@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
21 lines • 727 B
TypeScript
import { Detail } from './Detail';
import { SafeKeyValueString } from '../../complexType/SafeKeyValueString';
import { Price } from '../../order/Price';
/** Consumption information for a specific offer */
export interface Element {
/** List of consumption details for this element */
details: Detail[];
/** List of metadata related to this element */
metadata?: SafeKeyValueString[];
/** Identifier of the offer */
planCode: string;
/** Family of the offer */
planFamily: string;
/** Total price of the element */
price: Price;
/** Consumed quantity */
quantity: number;
/** Unique ID of the consumed resource */
uniqueId?: string;
}
//# sourceMappingURL=Element.d.ts.map