@vonage/messages
Version:
Multi-channel messaging that integrates WhatsApp, Facebook, Viber, SMS, and MMS
50 lines • 1.36 kB
TypeScript
/**
* Represents a request for sending an image message via the MMS (Multimedia Messaging Service) channel.
*
* @group MMS
* @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 MMSImageRequest = {
/**
* A client-defined reference string for the message.
*/
client_ref: string;
/**
* The type of the message, which is 'image' for an image message.
*/
message_type: 'image';
/**
* The image content of the message, including the URL of the image and an optional caption.
*/
image: {
/**
* The URL of the image file to be sent in the message.
*/
url: string;
/**
* An optional caption or description for the image message.
*/
caption?: 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 'mms' for MMS.
*/
channel: 'mms';
/**
* The amount of time in seconds the message will live for
*/
ttl?: number;
};
//# sourceMappingURL=MMSImageRequest.d.ts.map