@vonage/messages
Version:
Multi-channel messaging that integrates WhatsApp, Facebook, Viber, SMS, and MMS
18 lines • 498 B
TypeScript
import { MessageParams } from './MessageParams';
import { MessageImageType } from './MessageImageType';
/**
* Represents the parameters for a message with an image attachment.
*/
export type MessageParamsImage = {
/**
* The image attachment content.
*/
image: {
caption?: string;
} & MessageImageType;
/**
* The amount of time in seconds the message will live for
*/
ttl?: number;
} & MessageParams;
//# sourceMappingURL=MessageParamsImage.d.ts.map