import { Price } from '../../order/Price';
import { InstanceMonthlyBilling } from './InstanceMonthlyBilling';
/** Instance usage */
export interface InstanceUsageDetail {
    /** Hourly price */
    hourly?: Price;
    /** Instance id */
    instanceId: string;
    /** Monthly price */
    monthly?: InstanceMonthlyBilling;
    /** Is monthly billing enabled */
    monthlyBilling: boolean;
    /** Reference */
    reference: string;
}
//# sourceMappingURL=InstanceUsageDetail.d.ts.map