UNPKG

@vonage/messages

Version:

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

23 lines 717 B
import { MessageInterface } from './MessageInterface'; import { MessageVcardType } from '../types'; /** * Represents a VCard message type. * * This interface extends the base `MessageInterface` and includes a `vcard` property * for the VCard message content and a `messageType` property indicating it as a VCard message. * * @deprecated Please use types instead of interfaces. * * @ignore */ export interface MessageVCardInterface extends MessageInterface { /** * The VCard content of the message. */ vcard: MessageVcardType; /** * The message type, which is set to 'vcard' for VCard messages. */ messageType: 'vcard'; } //# sourceMappingURL=MessageVCardInterface.d.ts.map