UNPKG

@apideck/node

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