UNPKG

boldsign

Version:

NodeJS client for boldsign

56 lines (49 loc) 1.37 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'; export class ExistingFormField { 'index'?: number; 'name'?: string | null; 'id'?: string | null; 'value'?: string | null; 'isReadOnly'?: boolean | null; static discriminator: string | undefined = undefined; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "index", "baseName": "index", "type": "number" }, { "name": "name", "baseName": "name", "type": "string" }, { "name": "id", "baseName": "id", "type": "string" }, { "name": "value", "baseName": "value", "type": "string" }, { "name": "isReadOnly", "baseName": "isReadOnly", "type": "boolean" } ]; static getAttributeTypeMap() { return ExistingFormField.attributeTypeMap; } }