/**
 * 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 { BalanceSheetAccounts } from './BalanceSheetAccounts';
/**
 * A balance sheet liabilities account represents the financial position of a company at a specific point in time.
 * @export
 * @interface BalanceSheetLiabilitiesAccount
 */
export interface BalanceSheetLiabilitiesAccount {
    /**
     * The unique identifier for the account.
     * @type {string}
     * @memberof BalanceSheetLiabilitiesAccount
     */
    readonly account_id?: string;
    /**
     * The account code of the account
     * @type {string}
     * @memberof BalanceSheetLiabilitiesAccount
     */
    readonly code?: string;
    /**
     * The name of the account.
     * @type {string}
     * @memberof BalanceSheetLiabilitiesAccount
     */
    readonly name?: string;
    /**
     * The amount or value of the item
     * @type {number}
     * @memberof BalanceSheetLiabilitiesAccount
     */
    readonly value?: number;
    /**
     *
     * @type {BalanceSheetAccounts}
     * @memberof BalanceSheetLiabilitiesAccount
     */
    items?: BalanceSheetAccounts | null;
}
export declare function BalanceSheetLiabilitiesAccountFromJSON(json: any): BalanceSheetLiabilitiesAccount;
export declare function BalanceSheetLiabilitiesAccountFromJSONTyped(json: any, ignoreDiscriminator: boolean): BalanceSheetLiabilitiesAccount;
export declare function BalanceSheetLiabilitiesAccountToJSON(value?: BalanceSheetLiabilitiesAccount | null): any;
