/** * This file was auto-generated by Fern from our API Definition. */ import * as ElevenLabs from "../index"; export interface ChapterSnapshotExtendedResponseModel { /** The ID of the chapter snapshot. */ chapter_snapshot_id: string; /** The ID of the project. */ project_id: string; /** The ID of the chapter. */ chapter_id: string; /** The creation date of the chapter snapshot. */ created_at_unix: number; /** The name of the chapter snapshot. */ name: string; character_alignments: ElevenLabs.CharacterAlignmentModel[]; }