UNPKG

@vonage/messages

Version:

Multi-channel messaging that integrates WhatsApp, Facebook, Viber, SMS, and MMS

18 lines 350 B
/** * Represents a video object with an optional caption. * * @deprecated Please use types instead of interfaces * * @ignore */ export interface VideoObject { /** * The URL of the video. */ url: string; /** * An optional caption for the video. */ caption?: string; } //# sourceMappingURL=VideoObject.d.ts.map