Type Alias MeetingParticipantRoomSystemCalloutRejectedEvent

MeetingParticipantRoomSystemCalloutRejectedEvent: Event<
    "meeting.participant_room_system_callout_rejected",
> & {
    event: string;
    event_ts: number;
    payload: {
        account_id: string;
        object: {
            host_id: string;
            id: number;
            inviter_name: string;
            message_id: string;
            participant: { call_type: string; device_ip: string };
            uuid: string;
        };
    };
}