import { UsbKeyCapacityEnum } from './UsbKeyCapacityEnum';
import { OptionRequiredEnum } from './OptionRequiredEnum';
/** A structure describing informations about orderable USB keys */
export interface UsbKeyOrderableDetails {
    /** Orderable USB keys capacity in gigabytes */
    capacity: UsbKeyCapacityEnum[];
    /** Number of USB keys that can be ordered for this server */
    number: number;
    /** Which option is required to order an USB key */
    optionRequired?: OptionRequiredEnum;
    /** Is USB keys orderable for this server */
    orderable: boolean;
}
//# sourceMappingURL=UsbKeyOrderableDetails.d.ts.map