import { StateEnum } from './StateEnum';
/** States of a Dedicated Cloud Datacenter Option */
export interface DatacenterOptionState {
    /** ID of the Datacenter */
    id: number;
    /** State of the Datacenter option */
    state: StateEnum;
}
//# sourceMappingURL=DatacenterOptionState.d.ts.map