UNPKG

@apideck/node

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