UNPKG

@apideck/node

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