/**
 *
 * @export
 * @interface AbstractTokenUpdate
 */
export interface AbstractTokenUpdate {
    /**
     * Whether the token is enabled for one-click payments, which simplify the payment process for the customer. One-click tokens are linked to customers via the customer ID.
     * @type {boolean}
     * @memberof AbstractTokenUpdate
     */
    enabledForOneClickPayment?: boolean;
    /**
     * The customer's email address.
     * @type {string}
     * @memberof AbstractTokenUpdate
     */
    customerEmailAddress?: string;
    /**
     * The reference used to identify the payment token (e.g. the customer's ID or email address).
     * @type {string}
     * @memberof AbstractTokenUpdate
     */
    tokenReference?: string;
    /**
     * The unique identifier of the customer in the external system.
     * @type {string}
     * @memberof AbstractTokenUpdate
     */
    customerId?: string;
    /**
     * The customer's time zone, which affects how dates and times are formatted when communicating with the customer.
     * @type {string}
     * @memberof AbstractTokenUpdate
     */
    timeZone?: string;
    /**
     * The language that is linked to the object.
     * @type {string}
     * @memberof AbstractTokenUpdate
     */
    language?: string;
}
/**
 * Check if a given object implements the AbstractTokenUpdate interface.
 */
export declare function instanceOfAbstractTokenUpdate(value: object): value is AbstractTokenUpdate;
export declare function AbstractTokenUpdateFromJSON(json: any): AbstractTokenUpdate;
export declare function AbstractTokenUpdateFromJSONTyped(json: any, ignoreDiscriminator: boolean): AbstractTokenUpdate;
export declare function AbstractTokenUpdateToJSON(json: any): AbstractTokenUpdate;
export declare function AbstractTokenUpdateToJSONTyped(value?: AbstractTokenUpdate | null, ignoreDiscriminator?: boolean): any;
