UNPKG

@apideck/node

Version:
66 lines (65 loc) 1.75 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 { Raw } from './Raw'; import { UnifiedId } from './UnifiedId'; /** * * @export * @interface CreateOrderTypeResponse */ export interface CreateOrderTypeResponse { /** * HTTP Response Status Code * @type {number} * @memberof CreateOrderTypeResponse */ status_code: number; /** * HTTP Response Status * @type {string} * @memberof CreateOrderTypeResponse */ status: string; /** * Apideck ID of service provider * @type {string} * @memberof CreateOrderTypeResponse */ service: string; /** * Unified API resource name * @type {string} * @memberof CreateOrderTypeResponse */ resource: string; /** * Operation performed * @type {string} * @memberof CreateOrderTypeResponse */ operation: string; /** * * @type {UnifiedId} * @memberof CreateOrderTypeResponse */ data: UnifiedId; /** * * @type {Raw} * @memberof CreateOrderTypeResponse */ _raw?: Raw | null; } export declare function CreateOrderTypeResponseFromJSON(json: any): CreateOrderTypeResponse; export declare function CreateOrderTypeResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateOrderTypeResponse; export declare function CreateOrderTypeResponseToJSON(value?: CreateOrderTypeResponse | null): any;