RatePlanConsumptionPricingType

enum RatePlanConsumptionPricingType : Enum<RatePlanConsumptionPricingType> , ConvertibleToJava<RatePlanConsumptionPricingType>

Pricing model used for consumption-based charges.

Entries

Link copied to clipboard

Pricing model not specified. This is the default.

Link copied to clipboard

Fixed rate charged for each API call.

Link copied to clipboard

Variable rate charged for each API call based on price tiers. Example: * 1-100 calls cost $2 per call * 101-200 calls cost $1.50 per call * 201-300 calls cost $1 per call * Total price for 50 calls: 50 x $2 = $100 * Total price for 150 calls: 100 x $2 + 50 x $1.5 = $275 * Total price for 250 calls: 100 x $2 + 100 x $1.5 + 50 x $1 = $400. Note: Not supported by Apigee at this time.

Link copied to clipboard

Note: Not supported by Apigee at this time.

Link copied to clipboard

Note: Not supported by Apigee at this time.

Types

Link copied to clipboard
object Companion

Functions

Link copied to clipboard
open override fun toJava(): RatePlanConsumptionPricingType
Link copied to clipboard

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Link copied to clipboard

Returns an array containing the constants of this enum type, in the order they're declared.

Properties

Link copied to clipboard
val javaValue: RatePlanConsumptionPricingType
Link copied to clipboard
Link copied to clipboard