whatsapp-api-js - v6.1.0
    Preparing search index...

    Type Alias PostDataCallField

    type PostDataCallField = {
        field: "calls";
        value:
            | {
                calls: [ServerCallConnect | ServerCallTerminate];
                contacts: [ServerContacts];
            }
            | {
                statuses: [
                    {
                        biz_opaque_callback_data?: string;
                        id: `wacid.${string}`;
                        recipient_id: string;
                        status: "RINGING"
                        | "ACCEPTED"
                        | "REJECTED";
                        timestamp: `${number}`;
                        type: "call";
                    },
                ];
            };
    }
    Index

    Properties

    Properties

    field: "calls"
    value:
        | {
            calls: [ServerCallConnect | ServerCallTerminate];
            contacts: [ServerContacts];
        }
        | {
            statuses: [
                {
                    biz_opaque_callback_data?: string;
                    id: `wacid.${string}`;
                    recipient_id: string;
                    status: "RINGING"
                    | "ACCEPTED"
                    | "REJECTED";
                    timestamp: `${number}`;
                    type: "call";
                },
            ];
        }