UNPKG

wallee

Version:
37 lines (36 loc) 1.07 kB
import { PersistableCurrencyAmount } from "./PersistableCurrencyAmount"; import { ProductMeteredFee } from "./ProductMeteredFee"; declare class ProductMeteredTierFee { /** * The amount charged to the customer for each consumed unit at the end of a billing cycle. */ 'fee'?: Array<PersistableCurrencyAmount>; /** * A unique identifier for the object. */ 'id'?: number; /** * The metered fee that this tier belongs to. */ 'meteredFee'?: ProductMeteredFee; /** * Starting from and including this quantity is contained in the tier. */ 'startRange'?: 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 { ProductMeteredTierFee };