wallee
Version:
TypeScript/JavaScript client for wallee
59 lines (58 loc) • 1.73 kB
TypeScript
declare class SubscriptionMetricUsageReport {
/**
* The number of resources consumed, will be charged in the next billing cycle.
*/
'consumedUnits'?: number;
/**
* The ID of the user the usage report was created by.
*/
'createdByUserId'?: number;
/**
* The date and time when the usage report was created.
*/
'createdOn'?: Date;
/**
* 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;
/**
* A unique identifier for the object.
*/
'id'?: number;
/**
* The ID of the space this object belongs to.
*/
'linkedSpaceId'?: number;
/**
* The metric that the usage report is recorded for.
*/
'metric'?: number;
/**
* The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
*/
'plannedPurgeDate'?: Date;
/**
* The subscription that the usage report is recorded for.
*/
'subscription'?: number;
/**
* The version is used for optimistic locking and incremented whenever the object is updated.
*/
'version'?: number;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}
export { SubscriptionMetricUsageReport };