UNPKG

wallee

Version:
35 lines (34 loc) 749 B
declare class MetricUsage { /** * The number of consumed units. */ 'consumedUnits'?: number; /** * The description of the consumed unit's metric. */ 'metricDescription'?: { [key: string]: string; }; /** * The ID of the consumed units' metric. */ 'metricId'?: number; /** * The name of the consumed units' metric. */ 'metricName'?: { [key: string]: string; }; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export { MetricUsage };