Type Alias SessionsListSessionUsersResponse

SessionsListSessionUsersResponse: {
    next_page_token?: string;
    page_size?: number;
    users?: {
        audio_call?: {
            call_number?: string;
            call_type?: string;
            zoom_number?: string;
        }[];
        camera?: string;
        client?: string;
        connection_type?: string;
        data_center?: string;
        device?: "Phone"
        | "H.323/SIP"
        | "Windows"
        | "Mac"
        | "iOS"
        | "Android";
        id?: string;
        ip_address?: string;
        join_time?: string;
        leave_time?: string;
        location?: string;
        microphone?: string;
        name?: string;
        network_type?: "Wired" | "Wifi" | "PPP" | "Cellular" | "Others";
        participant_uuid?: string;
        speaker?: string;
        user_key?: string;
    }[];
}