UNPKG

boldsign

Version:

NodeJS client for boldsign

56 lines (49 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'; export class VerificationDataRequest { 'emailId'?: string | null; 'countryCode'?: string | null; 'phoneNumber'?: string | null; 'order'?: number; 'onBehalfOf'?: string | null; static discriminator: string | undefined = undefined; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "emailId", "baseName": "emailId", "type": "string" }, { "name": "countryCode", "baseName": "countryCode", "type": "string" }, { "name": "phoneNumber", "baseName": "phoneNumber", "type": "string" }, { "name": "order", "baseName": "order", "type": "number" }, { "name": "onBehalfOf", "baseName": "onBehalfOf", "type": "string" } ]; static getAttributeTypeMap() { return VerificationDataRequest.attributeTypeMap; } }