UNPKG

@apideck/node

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