UNPKG

boldsign

Version:

NodeJS client for boldsign

46 lines (45 loc) 1.34 kB
import { BehalfOf } from './behalfOf'; import { DocumentCcDetails } from './documentCcDetails'; import { DocumentSenderDetail } from './documentSenderDetail'; import { DocumentSignerDetails } from './documentSignerDetails'; export declare class BehalfDocument { 'behalfOf'?: BehalfOf; 'documentId'?: string | null; 'senderDetail'?: DocumentSenderDetail; 'ccDetails'?: Array<DocumentCcDetails> | null; 'createdDate'?: number; 'activityDate'?: number; 'activityBy'?: string | null; 'messageTitle'?: string | null; 'status'?: BehalfDocument.StatusEnum; 'signerDetails'?: Array<DocumentSignerDetails> | null; 'expiryDate'?: number; 'enableSigningOrder'?: boolean; 'isDeleted'?: boolean; 'labels'?: Array<string> | null; 'cursor'?: number; 'brandId'?: string | null; 'scheduledSendTime'?: number | null; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export declare namespace BehalfDocument { enum StatusEnum { InProgress, Completed, Declined, Expired, Revoked, Draft, Scheduled } }