UNPKG

@apideck/node

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