UNPKG

boldsign

Version:

NodeJS client for boldsign

69 lines (62 loc) 1.84 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 { CustomFormField } from './customFormField'; export class ViewCustomFieldDetails { 'customFieldId'?: string | null; 'fieldName'?: string | null; 'fieldDescription'?: string | null; 'fieldOrder'?: number; 'brandId'?: string | null; 'sharedField'?: boolean; 'formField'?: CustomFormField; static discriminator: string | undefined = undefined; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "customFieldId", "baseName": "customFieldId", "type": "string" }, { "name": "fieldName", "baseName": "fieldName", "type": "string" }, { "name": "fieldDescription", "baseName": "fieldDescription", "type": "string" }, { "name": "fieldOrder", "baseName": "fieldOrder", "type": "number" }, { "name": "brandId", "baseName": "brandId", "type": "string" }, { "name": "sharedField", "baseName": "sharedField", "type": "boolean" }, { "name": "formField", "baseName": "formField", "type": "CustomFormField" } ]; static getAttributeTypeMap() { return ViewCustomFieldDetails.attributeTypeMap; } }