UNPKG

boldsign

Version:

NodeJS client for boldsign

57 lines (50 loc) 1.44 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 { PhoneNumber } from './phoneNumber'; export class ContactDetails { 'email': string; 'name': string; 'phoneNumber'?: PhoneNumber; 'jobTitle'?: string | null; 'companyName'?: string | null; static discriminator: string | undefined = undefined; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "email", "baseName": "email", "type": "string" }, { "name": "name", "baseName": "name", "type": "string" }, { "name": "phoneNumber", "baseName": "phoneNumber", "type": "PhoneNumber" }, { "name": "jobTitle", "baseName": "jobTitle", "type": "string" }, { "name": "companyName", "baseName": "companyName", "type": "string" } ]; static getAttributeTypeMap() { return ContactDetails.attributeTypeMap; } }