/** * 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'; export class WTMerchantUpdate { 'companyName': string; 'address1': string; 'address2': string; 'city': string; 'state': string; 'country': string; 'phoneNumber': string; 'zip': string; 'currencyAbbreviation'?: string; static discriminator: string | undefined = undefined; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "companyName", "baseName": "companyName", "type": "string" }, { "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": "country", "baseName": "country", "type": "string" }, { "name": "phoneNumber", "baseName": "phoneNumber", "type": "string" }, { "name": "zip", "baseName": "zip", "type": "string" }, { "name": "currencyAbbreviation", "baseName": "currencyAbbreviation", "type": "string" } ]; static getAttributeTypeMap() { return WTMerchantUpdate.attributeTypeMap; } }