/**
 * 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 { BalanceSheetAssetsAccount } from './BalanceSheetAssetsAccount';
import { BalanceSheetEquityAccount } from './BalanceSheetEquityAccount';
import { BalanceSheetLiabilitiesAccount } from './BalanceSheetLiabilitiesAccount';
import { BalanceSheetUncategorizedItemsAccount } from './BalanceSheetUncategorizedItemsAccount';
import { Currency } from './Currency';
/**
 *
 * @export
 * @interface BalanceSheetReports
 */
export interface BalanceSheetReports {
    /**
     * The start date of the report
     * @type {string}
     * @memberof BalanceSheetReports
     */
    end_date: string;
    /**
     *
     * @type {BalanceSheetAssetsAccount}
     * @memberof BalanceSheetReports
     */
    assets: BalanceSheetAssetsAccount;
    /**
     *
     * @type {BalanceSheetLiabilitiesAccount}
     * @memberof BalanceSheetReports
     */
    liabilities: BalanceSheetLiabilitiesAccount;
    /**
     *
     * @type {BalanceSheetEquityAccount}
     * @memberof BalanceSheetReports
     */
    equity: BalanceSheetEquityAccount;
    /**
     * A unique identifier for an object.
     * @type {string}
     * @memberof BalanceSheetReports
     */
    readonly id?: string;
    /**
     * The name of the report
     * @type {string}
     * @memberof BalanceSheetReports
     */
    report_name?: string;
    /**
     * The start date of the report
     * @type {string}
     * @memberof BalanceSheetReports
     */
    start_date?: string;
    /**
     *
     * @type {Currency}
     * @memberof BalanceSheetReports
     */
    currency?: Currency | null;
    /**
     * The net assets of the balance sheet
     * @type {number}
     * @memberof BalanceSheetReports
     */
    net_assets?: number;
    /**
     * When custom mappings are configured on the resource, the result is included here.
     * @type {object}
     * @memberof BalanceSheetReports
     */
    readonly custom_mappings?: object | null;
    /**
     * The user who last updated the object.
     * @type {string}
     * @memberof BalanceSheetReports
     */
    readonly updated_by?: string | null;
    /**
     * The user who created the object.
     * @type {string}
     * @memberof BalanceSheetReports
     */
    readonly created_by?: string | null;
    /**
     * The date and time when the object was last updated.
     * @type {Date}
     * @memberof BalanceSheetReports
     */
    readonly updated_at?: Date | null;
    /**
     * The date and time when the object was created.
     * @type {Date}
     * @memberof BalanceSheetReports
     */
    readonly created_at?: Date | null;
    /**
     *
     * @type {BalanceSheetUncategorizedItemsAccount}
     * @memberof BalanceSheetReports
     */
    uncategorized_items?: BalanceSheetUncategorizedItemsAccount;
}
export declare function BalanceSheetReportsFromJSON(json: any): BalanceSheetReports;
export declare function BalanceSheetReportsFromJSONTyped(json: any, ignoreDiscriminator: boolean): BalanceSheetReports;
export declare function BalanceSheetReportsToJSON(value?: BalanceSheetReports | null): any;
