@apideck/node
Version:
Apideck Node.js SDK
66 lines (65 loc) • 1.78 kB
TypeScript
/**
* 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 { PurchaseOrder } from './PurchaseOrder';
import { Raw } from './Raw';
/**
*
* @export
* @interface GetPurchaseOrderResponse
*/
export interface GetPurchaseOrderResponse {
/**
* HTTP Response Status Code
* @type {number}
* @memberof GetPurchaseOrderResponse
*/
status_code: number;
/**
* HTTP Response Status
* @type {string}
* @memberof GetPurchaseOrderResponse
*/
status: string;
/**
* Apideck ID of service provider
* @type {string}
* @memberof GetPurchaseOrderResponse
*/
service: string;
/**
* Unified API resource name
* @type {string}
* @memberof GetPurchaseOrderResponse
*/
resource: string;
/**
* Operation performed
* @type {string}
* @memberof GetPurchaseOrderResponse
*/
operation: string;
/**
*
* @type {PurchaseOrder}
* @memberof GetPurchaseOrderResponse
*/
data: PurchaseOrder;
/**
*
* @type {Raw}
* @memberof GetPurchaseOrderResponse
*/
_raw?: Raw | null;
}
export declare function GetPurchaseOrderResponseFromJSON(json: any): GetPurchaseOrderResponse;
export declare function GetPurchaseOrderResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetPurchaseOrderResponse;
export declare function GetPurchaseOrderResponseToJSON(value?: GetPurchaseOrderResponse | null): any;