UNPKG

@apideck/node

Version:
80 lines (79 loc) 1.97 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 { Links } from './Links'; import { Meta } from './Meta'; import { Raw } from './Raw'; /** * * @export * @interface GetInvoicesResponse */ export interface GetInvoicesResponse { /** * HTTP Response Status Code * @type {number} * @memberof GetInvoicesResponse */ status_code: number; /** * HTTP Response Status * @type {string} * @memberof GetInvoicesResponse */ status: string; /** * Apideck ID of service provider * @type {string} * @memberof GetInvoicesResponse */ service: string; /** * Unified API resource name * @type {string} * @memberof GetInvoicesResponse */ resource: string; /** * Operation performed * @type {string} * @memberof GetInvoicesResponse */ operation: string; /** * * @type {Array<Invoice>} * @memberof GetInvoicesResponse */ data: Array<Invoice>; /** * * @type {Meta} * @memberof GetInvoicesResponse */ meta?: Meta; /** * * @type {Links} * @memberof GetInvoicesResponse */ links?: Links; /** * * @type {Raw} * @memberof GetInvoicesResponse */ _raw?: Raw | null; } export declare function GetInvoicesResponseFromJSON(json: any): GetInvoicesResponse; export declare function GetInvoicesResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetInvoicesResponse; export declare function GetInvoicesResponseToJSON(value?: GetInvoicesResponse | null): any;