Type Alias MeetingParticipantPhoneCalloutRejectedEvent

MeetingParticipantPhoneCalloutRejectedEvent: Event<
    "meeting.participant_phone_callout_rejected",
> & {
    event: string;
    event_ts: number;
    payload: {
        account_id: string;
        object: {
            host_id: string;
            id: number;
            participant: { invitee_name: string; phone_number: number };
            uuid: string;
        };
    };
}