UNPKG

@apideck/node

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