import type { DevopsEssentialsConsumption } from '../schemas/DevopsEssentialsConsumption'; import type { DevopsEssentialsRemaining } from '../schemas/DevopsEssentialsRemaining'; export interface DevopsEssentialsMetricsDto { applied?: DevopsEssentialsConsumption; moduleType?: string; remaining?: DevopsEssentialsRemaining; /** * Maximum named users that can be provisioned on an account * @format int64 */ totalAvailable?: number; usage?: DevopsEssentialsConsumption; }