@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
15 lines • 477 B
TypeScript
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