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 CreateLedgerAccountResponse */ export interface CreateLedgerAccountResponse { /** * HTTP Response Status Code * @type {number} * @memberof CreateLedgerAccountResponse */ status_code: number; /** * HTTP Response Status * @type {string} * @memberof CreateLedgerAccountResponse */ status: string; /** * Apideck ID of service provider * @type {string} * @memberof CreateLedgerAccountResponse */ service: string; /** * Unified API resource name * @type {string} * @memberof CreateLedgerAccountResponse */ resource: string; /** * Operation performed * @type {string} * @memberof CreateLedgerAccountResponse */ operation: string; /** * * @type {UnifiedId} * @memberof CreateLedgerAccountResponse */ data: UnifiedId; /** * * @type {Raw} * @memberof CreateLedgerAccountResponse */ _raw?: Raw | null; } export declare function CreateLedgerAccountResponseFromJSON(json: any): CreateLedgerAccountResponse; export declare function CreateLedgerAccountResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateLedgerAccountResponse; export declare function CreateLedgerAccountResponseToJSON(value?: CreateLedgerAccountResponse | null): any;