/** * This file was auto-generated by Fern from our API Definition. */ export interface ChapterSnapshotResponse { /** 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; }