UNPKG

@apideck/node

Version:
40 lines (39 loc) 1.26 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. */ /** * * @export * @interface LedgerAccountParentAccount */ export interface LedgerAccountParentAccount { /** * The ID of the parent account. * @type {string} * @memberof LedgerAccountParentAccount */ id?: string; /** * The name of the parent account. * @type {string} * @memberof LedgerAccountParentAccount */ name?: string; /** * The human readable display ID used when displaying the parent account * @type {string} * @memberof LedgerAccountParentAccount */ display_id?: string; } export declare function LedgerAccountParentAccountFromJSON(json: any): LedgerAccountParentAccount; export declare function LedgerAccountParentAccountFromJSONTyped(json: any, ignoreDiscriminator: boolean): LedgerAccountParentAccount; export declare function LedgerAccountParentAccountToJSON(value?: LedgerAccountParentAccount | null): any;