UNPKG

@apideck/node

Version:
80 lines (79 loc) 1.89 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 { Job } from './Job'; import { Links } from './Links'; import { Meta } from './Meta'; import { Raw } from './Raw'; /** * * @export * @interface GetJobsResponse */ export interface GetJobsResponse { /** * HTTP Response Status Code * @type {number} * @memberof GetJobsResponse */ status_code: number; /** * HTTP Response Status * @type {string} * @memberof GetJobsResponse */ status: string; /** * Apideck ID of service provider * @type {string} * @memberof GetJobsResponse */ service: string; /** * Unified API resource name * @type {string} * @memberof GetJobsResponse */ resource: string; /** * Operation performed * @type {string} * @memberof GetJobsResponse */ operation: string; /** * * @type {Array<Job>} * @memberof GetJobsResponse */ data: Array<Job>; /** * * @type {Raw} * @memberof GetJobsResponse */ _raw?: Raw | null; /** * * @type {Meta} * @memberof GetJobsResponse */ meta?: Meta; /** * * @type {Links} * @memberof GetJobsResponse */ links?: Links; } export declare function GetJobsResponseFromJSON(json: any): GetJobsResponse; export declare function GetJobsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetJobsResponse; export declare function GetJobsResponseToJSON(value?: GetJobsResponse | null): any;