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 { InvoiceResponse } from './InvoiceResponse'; import { Raw } from './Raw'; /** * * @export * @interface DeleteInvoiceResponse */ export interface DeleteInvoiceResponse { /** * HTTP Response Status Code * @type {number} * @memberof DeleteInvoiceResponse */ status_code: number; /** * HTTP Response Status * @type {string} * @memberof DeleteInvoiceResponse */ status: string; /** * Apideck ID of service provider * @type {string} * @memberof DeleteInvoiceResponse */ service: string; /** * Unified API resource name * @type {string} * @memberof DeleteInvoiceResponse */ resource: string; /** * Operation performed * @type {string} * @memberof DeleteInvoiceResponse */ operation: string; /** * * @type {InvoiceResponse} * @memberof DeleteInvoiceResponse */ data: InvoiceResponse; /** * * @type {Raw} * @memberof DeleteInvoiceResponse */ _raw?: Raw | null; } export declare function DeleteInvoiceResponseFromJSON(json: any): DeleteInvoiceResponse; export declare function DeleteInvoiceResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): DeleteInvoiceResponse; export declare function DeleteInvoiceResponseToJSON(value?: DeleteInvoiceResponse | null): any;