/** * 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 WTAuthenticationLoginResponse { 'id': string; 'createdAt': Date; 'updatedAt': Date; 'firstName': string; 'lastName': string; 'username': string; 'email': string; 'merchantID': string; 'employeeID': string; 'profilePictureURL': string; 'jobTitle': string; 'department': string; 'merchantName': string; 'merchantCurrencyAbbreviation'?: string; 'merchantIndustry': string; 'customDomain'?: string; static discriminator: string | undefined = undefined; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "id", "baseName": "id", "type": "string" }, { "name": "createdAt", "baseName": "createdAt", "type": "Date" }, { "name": "updatedAt", "baseName": "updatedAt", "type": "Date" }, { "name": "firstName", "baseName": "firstName", "type": "string" }, { "name": "lastName", "baseName": "lastName", "type": "string" }, { "name": "username", "baseName": "username", "type": "string" }, { "name": "email", "baseName": "email", "type": "string" }, { "name": "merchantID", "baseName": "merchantID", "type": "string" }, { "name": "employeeID", "baseName": "employeeID", "type": "string" }, { "name": "profilePictureURL", "baseName": "profilePictureURL", "type": "string" }, { "name": "jobTitle", "baseName": "jobTitle", "type": "string" }, { "name": "department", "baseName": "department", "type": "string" }, { "name": "merchantName", "baseName": "merchantName", "type": "string" }, { "name": "merchantCurrencyAbbreviation", "baseName": "merchantCurrencyAbbreviation", "type": "string" }, { "name": "merchantIndustry", "baseName": "merchantIndustry", "type": "string" }, { "name": "customDomain", "baseName": "customDomain", "type": "string" } ]; static getAttributeTypeMap() { return WTAuthenticationLoginResponse.attributeTypeMap; } }