wallee
Version:
TypeScript/JavaScript client for wallee
27 lines (26 loc) • 670 B
TypeScript
declare class AbstractSubscriptionMetricUpdate {
/**
* The localized description of the metric that is displayed to the customer.
*/
'description'?: {
[]: string;
};
/**
* The localized name of the metric that is displayed to the customer.
*/
'name'?: {
[]: string;
};
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}
export { AbstractSubscriptionMetricUpdate };