/**
 * 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 ProfitAndLossFilter
 */
export interface ProfitAndLossFilter {
    /**
     * Filter by customer id
     * @type {string}
     * @memberof ProfitAndLossFilter
     */
    customer_id?: string;
    /**
     * Filter by start date. If start date is given, end date is required.
     * @type {string}
     * @memberof ProfitAndLossFilter
     */
    start_date?: string;
    /**
     * Filter by end date. If end date is given, start date is required.
     * @type {string}
     * @memberof ProfitAndLossFilter
     */
    end_date?: string;
}
export declare function ProfitAndLossFilterFromJSON(json: any): ProfitAndLossFilter;
export declare function ProfitAndLossFilterFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProfitAndLossFilter;
export declare function ProfitAndLossFilterToJSON(value?: ProfitAndLossFilter | null): any;
