UNPKG

@apideck/node

Version:
46 lines (45 loc) 1.32 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 LinkedLedgerAccount */ export interface LinkedLedgerAccount { /** * The unique identifier for the account. * @type {string} * @memberof LinkedLedgerAccount */ id?: string; /** * The name of the account. * @type {string} * @memberof LinkedLedgerAccount */ readonly name?: string | null; /** * The nominal code of the account. * @type {string} * @memberof LinkedLedgerAccount */ nominal_code?: string | null; /** * The code assigned to the account. * @type {string} * @memberof LinkedLedgerAccount */ code?: string | null; } export declare function LinkedLedgerAccountFromJSON(json: any): LinkedLedgerAccount; export declare function LinkedLedgerAccountFromJSONTyped(json: any, ignoreDiscriminator: boolean): LinkedLedgerAccount; export declare function LinkedLedgerAccountToJSON(value?: LinkedLedgerAccount | null): any;