import type { Transaction } from './Transaction';
import type { Charge } from './Charge';
import type { ChargeFlowLevelConfiguration } from './ChargeFlowLevelConfiguration';
import type { ChargeFlowLevelState } from './ChargeFlowLevelState';
/**
 *
 * @export
 * @interface ChargeFlowLevel
 */
export interface ChargeFlowLevel {
    /**
     *
     * @type {Charge}
     * @memberof ChargeFlowLevel
     */
    synchronousCharge?: Charge;
    /**
     *
     * @type {ChargeFlowLevelConfiguration}
     * @memberof ChargeFlowLevel
     */
    _configuration?: ChargeFlowLevelConfiguration;
    /**
     * 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 ChargeFlowLevel
     */
    readonly plannedPurgeDate?: Date;
    /**
     * The date and time when the object was created.
     * @type {Date}
     * @memberof ChargeFlowLevel
     */
    readonly createdOn?: Date;
    /**
     * The version is used for optimistic locking and incremented whenever the object is updated.
     * @type {number}
     * @memberof ChargeFlowLevel
     */
    readonly version?: number;
    /**
     * The ID of the space this object belongs to.
     * @type {number}
     * @memberof ChargeFlowLevel
     */
    readonly linkedSpaceId?: number;
    /**
     * The date and time when the charge flow level will expire.
     * @type {Date}
     * @memberof ChargeFlowLevel
     */
    readonly timeoutOn?: Date;
    /**
     * A unique identifier for the object.
     * @type {number}
     * @memberof ChargeFlowLevel
     */
    readonly id?: number;
    /**
     *
     * @type {ChargeFlowLevelState}
     * @memberof ChargeFlowLevel
     */
    state?: ChargeFlowLevelState;
    /**
     *
     * @type {Charge}
     * @memberof ChargeFlowLevel
     */
    asynchronousCharge?: Charge;
    /**
     * The payment transaction this object is linked to.
     * @type {number}
     * @memberof ChargeFlowLevel
     */
    readonly linkedTransaction?: number;
    /**
     *
     * @type {Charge}
     * @memberof ChargeFlowLevel
     */
    tokenCharge?: Charge;
    /**
     *
     * @type {Transaction}
     * @memberof ChargeFlowLevel
     */
    transaction?: Transaction;
}
/**
 * Check if a given object implements the ChargeFlowLevel interface.
 */
export declare function instanceOfChargeFlowLevel(value: object): value is ChargeFlowLevel;
export declare function ChargeFlowLevelFromJSON(json: any): ChargeFlowLevel;
export declare function ChargeFlowLevelFromJSONTyped(json: any, ignoreDiscriminator: boolean): ChargeFlowLevel;
export declare function ChargeFlowLevelToJSON(json: any): ChargeFlowLevel;
export declare function ChargeFlowLevelToJSONTyped(value?: Omit<ChargeFlowLevel, 'plannedPurgeDate' | 'createdOn' | 'version' | 'linkedSpaceId' | 'timeoutOn' | 'id' | 'linkedTransaction'> | null, ignoreDiscriminator?: boolean): any;
