UNPKG

@vonage/messages

Version:

Multi-channel messaging that integrates WhatsApp, Facebook, Viber, SMS, and MMS

42 lines 1.13 kB
import { MessengerType } from '../Channels'; /** * Represents a request for sending a text message via the Messenger channel. * * @group Messenger * @category Requests * * @remarks * Vonage API's will return information using `snake_case`. This represents the * pure response before the client will transform the keys into `camelCase`. */ export type MessengerTextRequest = { /** * A client-defined reference string for the message. */ client_ref: string; /** * The type of the message, which is 'text' for a text message. */ message_type: 'text'; /** * The text content of the message. */ text: string; /** * The recipient's phone number or identifier. */ to: string; /** * The sender's phone number or identifier. */ from: string; /** * The channel through which the message will be sent, which is 'messenger' for Messenger. */ channel: 'messenger'; /** * Additional information specific to the Messenger channel. */ messenger: MessengerType; }; //# sourceMappingURL=MessengerTextRequest.d.ts.map