/** * Devops Essentials consumption Model */ export interface DevopsEssentialsConsumption { /** * Number of Postpay units consumed */ postpayUnitsConsumed?: number; /** * Cost of the postpay units * @format double */ postpayUnitsCost?: number; /** * Number of Prepay units consumed */ prepayUnitsConsumed?: number; /** * Cost of the prepay units * @format double */ prepayUnitsCost?: number; /** * Total charges of all units * @format double */ totalCharges?: number; }