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