@vonage/messages
Version:
Multi-channel messaging that integrates WhatsApp, Facebook, Viber, SMS, and MMS
20 lines • 429 B
TypeScript
/**
* Represents an image object.
*
* An image object typically includes a URL pointing to an image and an optional caption.
*
* @deprecated Please use types instead of interfaces.
*
* @ignore
*/
export interface ImageObject {
/**
* The URL of the image.
*/
url: string;
/**
* An optional caption to accompany the image.
*/
caption?: string;
}
//# sourceMappingURL=ImageObject.d.ts.map