/** * Bleumi Pay API * A simple and powerful REST API to integrate ERC-20, Ethereum, xDai payments and/or payouts into your business or application * * The version of the OpenAPI document: 1.0.0 * Contact: info@bleumi.com * * 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 '../api'; /** * Request does not meet API specifications */ export class BadRequest { /** * Code for error class. Complete list of error codes is available [here](https://pay.bleumi.com/docs/#errors) */ 'errorCode': string; /** * Error description */ 'errorMessage'?: string; static discriminator: string | undefined = undefined; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "errorCode", "baseName": "errorCode", "type": "string" }, { "name": "errorMessage", "baseName": "errorMessage", "type": "string" } ]; static getAttributeTypeMap() { return BadRequest.attributeTypeMap; } }