Type Alias PhoneCallerCallHistoryCompletedEvent

PhoneCallerCallHistoryCompletedEvent: Event<
    "phone.caller_call_history_completed",
> & {
    event: string;
    event_ts: number;
    payload: {
        account_id: string;
        object: {
            call_logs: {
                answer_time?: string;
                call_id: string;
                call_type?: string;
                callee_cost_center?: string;
                callee_country_code?: string;
                callee_country_iso_code?: string;
                callee_department?: string;
                callee_device_private_ip?: string;
                callee_device_public_ip?: string;
                callee_device_type?: string;
                callee_did_number?: string;
                callee_email?: string;
                callee_employee_id?: string;
                callee_ext_id?: string;
                callee_ext_number?: string;
                callee_ext_type?: string;
                callee_name?: string;
                callee_number_type?: string;
                callee_site_id?: string;
                caller_cost_center?: string;
                caller_country_code?: string;
                caller_country_iso_code?: string;
                caller_department?: string;
                caller_device_private_ip?: string;
                caller_device_public_ip?: string;
                caller_device_type?: string;
                caller_did_number?: string;
                caller_email?: string;
                caller_employee_id?: string;
                caller_ext_id?: string;
                caller_ext_number?: string;
                caller_ext_type?: string;
                caller_name?: string;
                caller_number_type?: string;
                caller_site_id?: string;
                connect_type?: string;
                direction?: string;
                end_time?: string;
                event?: string;
                group_id?: string;
                hold_time?: number;
                id: string;
                operator_ext_id?: string;
                operator_ext_number?: string;
                operator_ext_type?: string;
                operator_name?: string;
                recording_id?: string;
                recording_type?: string;
                result: string;
                result_reason?: string;
                start_time: string;
                talk_time?: number;
                voicemail_id?: string;
                wait_time?: number;
            }[];
            user_id: string;
        };
    };
}