UNPKG

wallee

Version:
36 lines (35 loc) 1.09 kB
import { PersistableCurrencyAmountUpdate } from "./PersistableCurrencyAmountUpdate"; declare class ProductMeteredTierFeeUpdate { /** * 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 amount charged to the customer for each consumed unit at the end of a billing cycle. */ 'fee'?: Array<PersistableCurrencyAmountUpdate>; /** * The metered fee that this tier belongs to. */ 'meteredFee'?: number; /** * Starting from and including this quantity is contained in the tier. */ 'startRange'?: number; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export { ProductMeteredTierFeeUpdate };