/** * 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 MSMerchantCreditHistory { /** * Optional Member ID as represented by the merchant */ 'memberIdentifier'?: string; 'mobileNumber': string; /** * The amount that needs to be credited to the member */ 'creditAmount': number; /** * The UUID of this record */ 'id': string; 'merchantCreditID': string; 'merchantID': string; /** * The timestamp of when this resource was created */ 'createdAt': Date; /** * Denotes if this resource is active */ 'isActive': boolean; static discriminator: string | undefined = undefined; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "memberIdentifier", "baseName": "memberIdentifier", "type": "string" }, { "name": "mobileNumber", "baseName": "mobileNumber", "type": "string" }, { "name": "creditAmount", "baseName": "creditAmount", "type": "number" }, { "name": "id", "baseName": "id", "type": "string" }, { "name": "merchantCreditID", "baseName": "merchantCreditID", "type": "string" }, { "name": "merchantID", "baseName": "merchantID", "type": "string" }, { "name": "createdAt", "baseName": "createdAt", "type": "Date" }, { "name": "isActive", "baseName": "isActive", "type": "boolean" } ]; static getAttributeTypeMap() { return MSMerchantCreditHistory.attributeTypeMap; } }