/**
* It conveys Information related to the target POI for which the diagnosis is requested. Content of the Diagnosis Request message.
*/
export declare class DiagnosisRequest {
    /**
    * Identification of a POI System or a POI Terminal for the Sale to POI protocol. MessageHeader.POIID.
    */
    "POIID"?: string;
    /**
    * Indicates if Host Diagnosis are required.
    */
    "HostDiagnosisFlag"?: boolean;
    /**
    * Identification of the Acquirer. Present if requesting the diagnosis of these hosts only.
    */
    "AcquirerID"?: Array<number>;
    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();
}
