@vonage/messages
Version:
Multi-channel messaging that integrates WhatsApp, Facebook, Viber, SMS, and MMS
14 lines • 482 B
TypeScript
import { MessageTypes } from '../enums/MessageTypes';
import { MessageParams } from './MessageParams';
import { MessageVideoType } from './MessageVideoType';
/**
* Represents the parameters for a message containing a video.
*/
export type MessageParamsVideo = {
messageType: MessageTypes.VIDEO | string;
/**
* The video information to be included in the message.
*/
video: MessageVideoType;
} & MessageParams;
//# sourceMappingURL=MessageParamsVideo.d.ts.map