UNPKG

boldsign

Version:

NodeJS client for boldsign

81 lines (80 loc) 2.43 kB
import { RequestFile } from './models'; import { DocumentCC } from './documentCC'; import { DocumentInfo } from './documentInfo'; import { FormGroup } from './formGroup'; import { RecipientNotificationSettings } from './recipientNotificationSettings'; import { TemplateRole } from './templateRole'; import { TextTagDefinition } from './textTagDefinition'; export declare class EmbeddedCreateTemplateRequest { 'title': string; 'redirectUrl'?: string | null; 'showToolbar'?: boolean; 'viewOption'?: EmbeddedCreateTemplateRequest.ViewOptionEnum; 'showSaveButton'?: boolean; 'locale'?: EmbeddedCreateTemplateRequest.LocaleEnum; 'showSendButton'?: boolean | null; 'showCreateButton'?: boolean; 'showPreviewButton'?: boolean; 'showNavigationButtons'?: boolean; 'linkValidTill'?: Date | null; 'showTooltip'?: boolean; 'description'?: string | null; 'documentTitle'?: string | null; 'documentMessage'?: string | null; 'files'?: Array<RequestFile> | null; 'fileUrls'?: Array<string> | null; 'roles'?: Array<TemplateRole> | null; 'allowModifyFiles'?: boolean; 'cc'?: Array<DocumentCC> | null; 'brandId'?: string | null; 'allowMessageEditing'?: boolean; 'allowNewRoles'?: boolean; 'allowNewFiles'?: boolean; 'enableReassign'?: boolean; 'enablePrintAndSign'?: boolean; 'enableSigningOrder'?: boolean; 'documentInfo'?: Array<DocumentInfo> | null; 'useTextTags'?: boolean; 'textTagDefinitions'?: Array<TextTagDefinition> | null; 'autoDetectFields'?: boolean; 'onBehalfOf'?: string | null; 'labels'?: Array<string> | null; 'templateLabels'?: Array<string> | null; 'formGroups'?: Array<FormGroup> | null; 'recipientNotificationSettings'?: RecipientNotificationSettings; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export declare namespace EmbeddedCreateTemplateRequest { enum ViewOptionEnum { PreparePage, FillingPage } enum LocaleEnum { En, No, Fr, De, Es, Bg, Cs, Da, It, Nl, Pl, Pt, Ro, Ru, Sv, Default } }