loop-modules
Version:
Shared modules for the Loop product suite.
17 lines (16 loc) • 382 B
text/typescript
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;
}