wallee
Version:
TypeScript/JavaScript client for wallee
35 lines (34 loc) • 1.05 kB
TypeScript
declare class SubscriptionMetricUsageReportCreate {
/**
* The number of resources consumed, will be charged in the next billing cycle.
*/
'consumedUnits': number;
/**
* A description used to identify the usage report.
*/
'description'?: string;
/**
* A client generated nonce which identifies the entity to be created. Subsequent creation requests with the same external ID will not create new entities but return the initially created entity instead.
*/
'externalId': string;
/**
* The metric that the usage report is recorded for.
*/
'metric': number;
/**
* The subscription that the usage report is recorded for.
*/
'subscription': number;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}
export { SubscriptionMetricUsageReportCreate };