/** * wallet-api * API * * The version of the OpenAPI document: 2.1.600 * Contact: development@wallet.inc * * 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 { BusinessClassification } from './businessClassification'; import { BusinessIndustry } from './businessIndustry'; import { BusinessRegionsOfOperation } from './businessRegionsOfOperation'; import { BusinessRegistrationIdentifier } from './businessRegistrationIdentifier'; import { BusinessStockExchanges } from './businessStockExchanges'; import { BusinessType } from './businessType'; import { JobPosition } from './jobPosition'; export class WTA2PApplicationUpdateParams { 'businessName': string; 'businessType': BusinessType; 'businessClassification': BusinessClassification; 'businessIndustry': BusinessIndustry; 'taxIDType': BusinessRegistrationIdentifier; 'taxID': string; 'websiteURL': string; 'socialMediaURL': string; 'regionsOfOperation': Array; 'stockExchange'?: BusinessStockExchanges; 'stockTicker'?: string; 'messagingVolumeHigh': boolean; 'address1': string; 'address2'?: string; 'city': string; 'state': string; 'postalCode': string; 'country': string; 'firstName': string; 'lastName': string; 'email': string; 'jobTitle': string; 'jobPosition': JobPosition; 'phoneNumber': string; static discriminator: string | undefined = undefined; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "businessName", "baseName": "businessName", "type": "string" }, { "name": "businessType", "baseName": "businessType", "type": "BusinessType" }, { "name": "businessClassification", "baseName": "businessClassification", "type": "BusinessClassification" }, { "name": "businessIndustry", "baseName": "businessIndustry", "type": "BusinessIndustry" }, { "name": "taxIDType", "baseName": "taxIDType", "type": "BusinessRegistrationIdentifier" }, { "name": "taxID", "baseName": "taxID", "type": "string" }, { "name": "websiteURL", "baseName": "websiteURL", "type": "string" }, { "name": "socialMediaURL", "baseName": "socialMediaURL", "type": "string" }, { "name": "regionsOfOperation", "baseName": "regionsOfOperation", "type": "Array" }, { "name": "stockExchange", "baseName": "stockExchange", "type": "BusinessStockExchanges" }, { "name": "stockTicker", "baseName": "stockTicker", "type": "string" }, { "name": "messagingVolumeHigh", "baseName": "messagingVolumeHigh", "type": "boolean" }, { "name": "address1", "baseName": "address1", "type": "string" }, { "name": "address2", "baseName": "address2", "type": "string" }, { "name": "city", "baseName": "city", "type": "string" }, { "name": "state", "baseName": "state", "type": "string" }, { "name": "postalCode", "baseName": "postalCode", "type": "string" }, { "name": "country", "baseName": "country", "type": "string" }, { "name": "firstName", "baseName": "firstName", "type": "string" }, { "name": "lastName", "baseName": "lastName", "type": "string" }, { "name": "email", "baseName": "email", "type": "string" }, { "name": "jobTitle", "baseName": "jobTitle", "type": "string" }, { "name": "jobPosition", "baseName": "jobPosition", "type": "JobPosition" }, { "name": "phoneNumber", "baseName": "phoneNumber", "type": "string" } ]; static getAttributeTypeMap() { return WTA2PApplicationUpdateParams.attributeTypeMap; } } export namespace WTA2PApplicationUpdateParams { }