Type Alias SessionsGetSharingRecordingDetailsResponse

SessionsGetSharingRecordingDetailsResponse: {
    next_page_token?: string;
    page_size?: number;
    users?: {
        details?: {
            content?:
                | "local_recording"
                | "cloud_recording"
                | "desktop"
                | "application"
                | "whiteboard"
                | "airplay"
                | "camera"
                | "video_sdk";
            end_time?: string;
            start_time?: string;
        }[];
        id?: string;
        name?: string;
    }[];
}