/** * Generated by orval v8.19.0 🍺 * Do not edit manually. * Webitel API * OpenAPI spec version: 24.04.0 */ import type { WebitelImApiGatewayV1Peer } from './webitelImApiGatewayV1Peer'; import type { WebitelImApiGatewayV1PeerIdentity } from './webitelImApiGatewayV1PeerIdentity'; import type { WebitelImApiGatewayV1SendContactRequestMetadata } from './webitelImApiGatewayV1SendContactRequestMetadata'; /** * SendContactRequest sends contact information. */ export interface WebitelImApiGatewayV1SendContactRequest { /** Email must be valid if provided. */ email?: string; /** Arbitrary metadata. */ metadata?: WebitelImApiGatewayV1SendContactRequestMetadata; /** Full name of the contact. */ name?: string; /** Phone number in E.164 format recommended. */ phoneNumber?: string; sendAs?: WebitelImApiGatewayV1PeerIdentity; /** Optional send ID for idempotency. */ sendId?: string; /** Recipient of the message. */ to?: WebitelImApiGatewayV1Peer; }