export interface ChapterSnapshotResponse {
    /** The ID of the chapter snapshot. */
    chapterSnapshotId: string;
    /** The ID of the project. */
    projectId: string;
    /** The ID of the chapter. */
    chapterId: string;
    /** The creation date of the chapter snapshot. */
    createdAtUnix: number;
    /** The name of the chapter snapshot. */
    name: string;
}
