@vonage/messages
Version:
Multi-channel messaging that integrates WhatsApp, Facebook, Viber, SMS, and MMS
46 lines • 1.39 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.MMSText = void 0;
const AbstractTextMessage_1 = require("../AbstractTextMessage");
const enums_1 = require("../../enums");
/**
* Represents a text message for the MMS channel.
*
* @group MMS
*/
class MMSText extends AbstractTextMessage_1.AbstractTextMessage {
/**
* The channel for this message (always 'mms').
*/
channel = enums_1.Channels.MMS;
/**
* Time-To-Live (how long a message should exist before it is delivered
* successfully) in seconds. If a message is not delivered successfully within
* the TTL time, the message is considered expired and will be rejected if TTL
* is supported.
*/
ttl;
/**
* Send an MMS text message.
*
* @param {MessageParamsText} params - The parameters for creating the text message.
* @example
* ```ts
* import { MMSText } from '@vonage/messages';
*
* const { messageUUID } = await messagesClient.send(new MMSText({
* to: TO_NUMBER,
* from: FROM_NUMBER,
* text: 'my message',
* clientRef: 'my-personal-reference',
* }));
*
* console.log(`Message sent successfully with UUID ${messageUUID}`);
* ```
*/
constructor(params) {
super(params);
}
}
exports.MMSText = MMSText;
//# sourceMappingURL=MMSText.js.map