import { RecipientRedirect } from './RecipientRedirect'; import { RecipientVerificationSettings } from './RecipientVerificationSettings'; import { RicipientDeliveryMethods } from './RicipientDeliveryMethods'; export declare class DocumentRecipientEditRequest { 'email'?: string; 'phone'?: string; 'deliveryMethods'?: RicipientDeliveryMethods; 'firstName'?: string; 'lastName'?: string; 'company'?: string; 'jobTitle'?: string; 'state'?: string; 'streetAddress'?: string; 'city'?: string; 'postalCode'?: string; 'verificationSettings'?: RecipientVerificationSettings; 'redirect'?: RecipientRedirect; static readonly discriminator: string | undefined; static readonly attributeTypeMap: Array<{ name: string; baseName: string; type: string; format: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; format: string; }[]; constructor(); }