import { RecurringTokenStoreOperation } from "./recurringTokenStoreOperation";
export declare class TokenizationAlreadyExistingDetailsNotificationRequest {
    /**
    * The date and time when the event happened, in ISO 8601 extended format.
    */
    "createdAt": Date;
    "data": RecurringTokenStoreOperation;
    /**
    * The environment from which the webhook originated.  Possible values: **test**, **live**.
    */
    "environment": TokenizationAlreadyExistingDetailsNotificationRequest.EnvironmentEnum;
    /**
    * The PSP reference of the event that triggered the webhook.
    */
    "eventId": string;
    /**
    * The type of webhook.
    */
    "type": TokenizationAlreadyExistingDetailsNotificationRequest.TypeEnum;
    /**
    * The version of this entity.
    */
    "version"?: string;
    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 TokenizationAlreadyExistingDetailsNotificationRequest {
    enum EnvironmentEnum {
        Test = "test",
        Live = "live"
    }
    enum TypeEnum {
        RecurringTokenAlreadyExisting = "recurring.token.alreadyExisting"
    }
}
