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