Type Alias WebinarsListWebinarParticipantsResponse

WebinarsListWebinarParticipantsResponse: {
    next_page_token?: string;
    page_count?: number;
    page_size?: number;
    participants?: {
        duration?: number;
        failover?: boolean;
        id?: string;
        internal_user?: boolean;
        join_time?: string;
        leave_time?: string;
        name?: string;
        registrant_id?: string;
        status?: string;
        user_email?: string;
        user_id?: string;
    }[];
    total_records?: number;
}