/**
 * 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 { ProfitAndLossRecords } from './ProfitAndLossRecords';
import { ProfitAndLossType } from './ProfitAndLossType';
/**
 * The operating income accounts
 * @export
 * @interface Income
 */
export interface Income {
    /**
     * The aggregated total of all accounts within this category.
     * @type {number}
     * @memberof Income
     */
    total: number | null;
    /**
     *
     * @type {ProfitAndLossRecords}
     * @memberof Income
     */
    records: ProfitAndLossRecords | null;
    /**
     * A unique identifier for an object.
     * @type {string}
     * @memberof Income
     */
    readonly id?: string;
    /**
     * The account code of the account
     * @type {string}
     * @memberof Income
     */
    readonly code?: string;
    /**
     * The name of the account.
     * @type {string}
     * @memberof Income
     */
    readonly title?: string;
    /**
     *
     * @type {ProfitAndLossType}
     * @memberof Income
     */
    type?: ProfitAndLossType | null;
}
export declare function IncomeFromJSON(json: any): Income;
export declare function IncomeFromJSONTyped(json: any, ignoreDiscriminator: boolean): Income;
export declare function IncomeToJSON(value?: Income | null): any;
