/** * This file was auto-generated by Fern from our API Definition. */ export interface ProjectSnapshotResponse { /** The ID of the project snapshot. */ project_snapshot_id: string; /** The ID of the project. */ project_id: string; /** The creation date of the project snapshot. */ created_at_unix: number; /** The name of the project snapshot. */ name: string; /** (Deprecated) */ audio_upload?: Record; /** (Deprecated) */ zip_upload?: Record; }