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