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