UNPKG

@apideck/node

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