UNPKG

boldsign

Version:

NodeJS client for boldsign

145 lines (138 loc) 4.2 kB
/** * BoldSign API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { RequestFile } from './models'; import { DocumentCC } from './documentCC'; import { DocumentInfo } from './documentInfo'; import { FormGroup } from './formGroup'; import { RecipientNotificationSettings } from './recipientNotificationSettings'; import { TemplateRole } from './templateRole'; export class EditTemplateRequest { 'title'?: string | null; 'description'?: string | null; 'documentTitle'?: string | null; 'documentMessage'?: string | null; 'roles'?: Array<TemplateRole> | null; 'cc'?: Array<DocumentCC> | null; 'brandId'?: string | null; 'allowMessageEditing'?: boolean | null; 'allowNewRoles'?: boolean | null; 'allowNewFiles'?: boolean | null; 'enableReassign'?: boolean | null; 'enablePrintAndSign'?: boolean | null; 'enableSigningOrder'?: boolean | null; 'documentInfo'?: Array<DocumentInfo> | null; 'onBehalfOf'?: string | null; 'labels'?: Array<string> | null; 'templateLabels'?: Array<string> | null; 'formGroups'?: Array<FormGroup> | null; 'recipientNotificationSettings'?: RecipientNotificationSettings; static discriminator: string | undefined = undefined; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "title", "baseName": "title", "type": "string" }, { "name": "description", "baseName": "description", "type": "string" }, { "name": "documentTitle", "baseName": "documentTitle", "type": "string" }, { "name": "documentMessage", "baseName": "documentMessage", "type": "string" }, { "name": "roles", "baseName": "roles", "type": "Array<TemplateRole>" }, { "name": "cc", "baseName": "cc", "type": "Array<DocumentCC>" }, { "name": "brandId", "baseName": "brandId", "type": "string" }, { "name": "allowMessageEditing", "baseName": "allowMessageEditing", "type": "boolean" }, { "name": "allowNewRoles", "baseName": "allowNewRoles", "type": "boolean" }, { "name": "allowNewFiles", "baseName": "allowNewFiles", "type": "boolean" }, { "name": "enableReassign", "baseName": "enableReassign", "type": "boolean" }, { "name": "enablePrintAndSign", "baseName": "enablePrintAndSign", "type": "boolean" }, { "name": "enableSigningOrder", "baseName": "enableSigningOrder", "type": "boolean" }, { "name": "documentInfo", "baseName": "documentInfo", "type": "Array<DocumentInfo>" }, { "name": "onBehalfOf", "baseName": "onBehalfOf", "type": "string" }, { "name": "labels", "baseName": "labels", "type": "Array<string>" }, { "name": "templateLabels", "baseName": "templateLabels", "type": "Array<string>" }, { "name": "formGroups", "baseName": "formGroups", "type": "Array<FormGroup>" }, { "name": "recipientNotificationSettings", "baseName": "recipientNotificationSettings", "type": "RecipientNotificationSettings" } ]; static getAttributeTypeMap() { return EditTemplateRequest.attributeTypeMap; } }