@bluvo/sdk-ts
Version:
Bluvo SDK for TypeScript
60 lines (52 loc) • 1.44 kB
text/typescript
/**
* Bluvo API
* APIs to supercharge your crypto project.
*
* OpenAPI spec version: 0.0.3
* Contact: help@bluvo.co
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import { HttpFile } from '../http/http';
export class GetWorkflow200ResponseStepsInnerErrorsInner {
/**
* HTTP status code of the error
*/
'status': number;
/**
* Error message
*/
'error': string;
/**
* The date and time when the error occurred
*/
'time': string;
static readonly discriminator: string | undefined = undefined;
static readonly mapping: {[index: string]: string} | undefined = undefined;
static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [
{
"name": "status",
"baseName": "status",
"type": "number",
"format": ""
},
{
"name": "error",
"baseName": "error",
"type": "string",
"format": ""
},
{
"name": "time",
"baseName": "time",
"type": "string",
"format": ""
} ];
static getAttributeTypeMap() {
return GetWorkflow200ResponseStepsInnerErrorsInner.attributeTypeMap;
}
public constructor() {
}
}