UNPKG

@bluvo/sdk-ts

Version:

Bluvo SDK for TypeScript

41 lines (33 loc) 1.15 kB
/** * 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 { GetWorkflow200ResponseStepsInner } from '../models/GetWorkflow200ResponseStepsInner'; import { HttpFile } from '../http/http'; export class GetWorkflow200Response { /** * Array of steps in the workflow run */ 'steps': Array<GetWorkflow200ResponseStepsInner>; 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": "steps", "baseName": "steps", "type": "Array<GetWorkflow200ResponseStepsInner>", "format": "" } ]; static getAttributeTypeMap() { return GetWorkflow200Response.attributeTypeMap; } public constructor() { } }