import type * as ElevenLabs from "../index"; export interface ProjectSnapshotExtendedResponseModel { /** The ID of the project snapshot. */ projectSnapshotId: string; /** The ID of the project. */ projectId: string; /** The creation date of the project snapshot. */ createdAtUnix: number; /** The name of the project snapshot. */ name: string; /** (Deprecated) */ audioUpload?: Record; /** (Deprecated) */ zipUpload?: Record; characterAlignments: ElevenLabs.CharacterAlignmentModel[]; /** The total duration of the audio in seconds. */ audioDurationSecs: number; }