wallee
Version:
TypeScript/JavaScript client for wallee
20 lines (19 loc) • 549 B
TypeScript
import { AbstractSubscriptionMetricUpdate } from "./AbstractSubscriptionMetricUpdate";
declare class SubscriptionMetricCreate extends AbstractSubscriptionMetricUpdate {
/**
* The type of the metric.
*/
'type': number;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}
export { SubscriptionMetricCreate };