import type { PaymentTerminalConfigurationState } from './PaymentTerminalConfigurationState';
import type { PaymentTerminalType } from './PaymentTerminalType';
/**
 *
 * @export
 * @interface PaymentTerminalConfiguration
 */
export interface PaymentTerminalConfiguration {
    /**
     * The ID of the space this object belongs to.
     * @type {number}
     * @memberof PaymentTerminalConfiguration
     */
    readonly linkedSpaceId?: number;
    /**
     * The name used to identify the payment terminal configuration.
     * @type {string}
     * @memberof PaymentTerminalConfiguration
     */
    readonly name?: string;
    /**
     * The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
     * @type {Date}
     * @memberof PaymentTerminalConfiguration
     */
    readonly plannedPurgeDate?: Date;
    /**
     * A unique identifier for the object.
     * @type {number}
     * @memberof PaymentTerminalConfiguration
     */
    readonly id?: number;
    /**
     *
     * @type {PaymentTerminalConfigurationState}
     * @memberof PaymentTerminalConfiguration
     */
    state?: PaymentTerminalConfigurationState;
    /**
     *
     * @type {PaymentTerminalType}
     * @memberof PaymentTerminalConfiguration
     */
    type?: PaymentTerminalType;
    /**
     * The version is used for optimistic locking and incremented whenever the object is updated.
     * @type {number}
     * @memberof PaymentTerminalConfiguration
     */
    readonly version?: number;
}
/**
 * Check if a given object implements the PaymentTerminalConfiguration interface.
 */
export declare function instanceOfPaymentTerminalConfiguration(value: object): value is PaymentTerminalConfiguration;
export declare function PaymentTerminalConfigurationFromJSON(json: any): PaymentTerminalConfiguration;
export declare function PaymentTerminalConfigurationFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaymentTerminalConfiguration;
export declare function PaymentTerminalConfigurationToJSON(json: any): PaymentTerminalConfiguration;
export declare function PaymentTerminalConfigurationToJSONTyped(value?: Omit<PaymentTerminalConfiguration, 'linkedSpaceId' | 'name' | 'plannedPurgeDate' | 'id' | 'version'> | null, ignoreDiscriminator?: boolean): any;
