export interface LoopSession {
    identity: string;
    created_at: number;
    last_modified_at: number;
    title: string;
    video_url: string;
    type: string;
    objection_count: number;
    content_count: number;
    content: string[];
    objections: string[];
    scenarios: string[];
    start_time?: number;
    end_time?: number;
    created_by_photo_url?: string;
}
