UNPKG

@apideck/node

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