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