import { TotalFilter } from "./totalFilter";
/**
* It conveys information from the Sale System related to the scope and the format of the totals to be computed by the POI System. Content of the Get Totals Request message.
*/
export declare class GetTotalsRequest {
    /**
    * Indicates the hierarchical structure of the reconciliation result of the Sale to POI reconciliation. Required to present totals per value of element included in this cluster (POI Terminal, Sale Terminal, Cashier, Shift, TotalsGroupID). Possible values: * **OperatorID** * **POIID** * **SaleID** * **ShiftNumber** * **TotalsGroupID**
    */
    "TotalDetails"?: Array<GetTotalsRequest.TotalDetailsEnum>;
    "TotalFilter"?: TotalFilter | null;
    static readonly discriminator: string | undefined;
    static readonly mapping: {
        [index: string]: string;
    } | undefined;
    static readonly attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
        format: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
        format: string;
    }[];
    constructor();
}
export declare namespace GetTotalsRequest {
    enum TotalDetailsEnum {
        Poiid = "POIID",
        SaleId = "SaleID",
        OperatorId = "OperatorID",
        ShiftNumber = "ShiftNumber",
        TotalsGroupId = "TotalsGroupID"
    }
}
