@vonage/messages
Version:
Multi-channel messaging that integrates WhatsApp, Facebook, Viber, SMS, and MMS
19 lines • 707 B
TypeScript
import { VideoObject } from '../../interfaces';
import { WhatsAppVideo } from './WhatsAppVideo';
/**
* @deprecated please use the WhatsAppVideo class instead
*
* @group WhatsApp
*/
export declare class Video extends WhatsAppVideo {
/**
* Constructs a new `Video` instance for WhatsApp.
*
* @param {VideoObject} video - The video message content.
* @param {string} to - The recipient's WhatsApp number.
* @param {string} from - The sender's WhatsApp number.
* @param {string} clientRef - (Optional) A unique client reference for the message.
*/
constructor(video: VideoObject, to: string, from: string, clientRef?: string);
}
//# sourceMappingURL=Video.d.ts.map