UNPKG

@apideck/node

Version:
66 lines (65 loc) 1.69 kB
/** * Apideck * The Apideck OpenAPI Spec: SDK Optimized * * The version of the OpenAPI document: 10.13.0 * Contact: support@apideck.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 { Pipeline } from './Pipeline'; import { Raw } from './Raw'; /** * * @export * @interface GetPipelineResponse */ export interface GetPipelineResponse { /** * HTTP Response Status Code * @type {number} * @memberof GetPipelineResponse */ status_code: number; /** * HTTP Response Status * @type {string} * @memberof GetPipelineResponse */ status: string; /** * Apideck ID of service provider * @type {string} * @memberof GetPipelineResponse */ service: string; /** * Unified API resource name * @type {string} * @memberof GetPipelineResponse */ resource: string; /** * Operation performed * @type {string} * @memberof GetPipelineResponse */ operation: string; /** * * @type {Pipeline} * @memberof GetPipelineResponse */ data: Pipeline; /** * * @type {Raw} * @memberof GetPipelineResponse */ _raw?: Raw | null; } export declare function GetPipelineResponseFromJSON(json: any): GetPipelineResponse; export declare function GetPipelineResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetPipelineResponse; export declare function GetPipelineResponseToJSON(value?: GetPipelineResponse | null): any;