UNPKG

wallee

Version:
35 lines (34 loc) 932 B
declare class SubscriptionMetricUpdate { /** * The ID is the primary key of the entity. The ID identifies the entity uniquely. */ 'id': number; /** * The version number indicates the version of the entity. The version is incremented whenever the entity is changed. */ 'version': number; /** * The localized description of the metric that is displayed to the customer. */ 'description'?: { [key: string]: string; }; /** * The localized name of the metric that is displayed to the customer. */ 'name'?: { [key: string]: string; }; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export { SubscriptionMetricUpdate };