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