/**
 * 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 BalanceSheetFilter
 */
export interface BalanceSheetFilter {
    /**
     * The start date of the period to include in the resource.
     * @type {string}
     * @memberof BalanceSheetFilter
     */
    start_date?: string;
    /**
     * The end date of the period to include in the resource.
     * @type {string}
     * @memberof BalanceSheetFilter
     */
    end_date?: string;
    /**
     * The number of periods to include in the resource.
     * @type {number}
     * @memberof BalanceSheetFilter
     */
    period_count?: number;
    /**
     * The type of period to include in the resource: month, quarter, year.
     * @type {string}
     * @memberof BalanceSheetFilter
     */
    period_type?: BalanceSheetFilterPeriodType;
}
/**
 * @export
 * @enum {string}
 */
export declare enum BalanceSheetFilterPeriodType {
    month = "month",
    quarter = "quarter",
    year = "year"
}
export declare function BalanceSheetFilterFromJSON(json: any): BalanceSheetFilter;
export declare function BalanceSheetFilterFromJSONTyped(json: any, ignoreDiscriminator: boolean): BalanceSheetFilter;
export declare function BalanceSheetFilterToJSON(value?: BalanceSheetFilter | null): any;
