import { Price } from '../../order/Price';
import { UnitAndValueLong } from '../../complexType/UnitAndValueLong';
import { VolumeType } from './VolumeType';
/** Volume usage */
export interface VolumeUsageDetail {
    /** Volume price */
    price: Price;
    /** Volume capacity in gigabytes */
    volumeCapacity: UnitAndValueLong;
    /** Volume id */
    volumeId: string;
    /** Volume type */
    volumeType: VolumeType;
}
//# sourceMappingURL=VolumeUsageDetail.d.ts.map