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