GetRatePlanResult

data class GetRatePlanResult(val apiproduct: String, val billingPeriod: String, val consumptionPricingRates: List<GoogleCloudApigeeV1RateRangeResponse>, val consumptionPricingType: String, val createdAt: String, val currencyCode: String, val description: String, val displayName: String, val endTime: String, val fixedFeeFrequency: Int, val fixedRecurringFee: GoogleTypeMoneyResponse, val lastModifiedAt: String, val name: String, val paymentFundingModel: String, val revenueShareRates: List<GoogleCloudApigeeV1RevenueShareRangeResponse>, val revenueShareType: String, val setupFee: GoogleTypeMoneyResponse, val startTime: String, val state: String)

Constructors

Link copied to clipboard
fun GetRatePlanResult(apiproduct: String, billingPeriod: String, consumptionPricingRates: List<GoogleCloudApigeeV1RateRangeResponse>, consumptionPricingType: String, createdAt: String, currencyCode: String, description: String, displayName: String, endTime: String, fixedFeeFrequency: Int, fixedRecurringFee: GoogleTypeMoneyResponse, lastModifiedAt: String, name: String, paymentFundingModel: String, revenueShareRates: List<GoogleCloudApigeeV1RevenueShareRangeResponse>, revenueShareType: String, setupFee: GoogleTypeMoneyResponse, startTime: String, state: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Name of the API product that the rate plan is associated with.

Link copied to clipboard

Frequency at which the customer will be billed.

Link copied to clipboard

API call volume ranges and the fees charged when the total number of API calls is within a given range. The method used to calculate the final fee depends on the selected pricing model. For example, if the pricing model is STAIRSTEP and the ranges are defined as follows: `` { "start": 1, "end": 100, "fee": 75 }, { "start": 101, "end": 200, "fee": 100 }, } `` Then the following fees would be charged based on the total number of API calls (assuming the currency selected is USD): * 1 call costs $75 * 50 calls cost $75 * 150 calls cost $100 The number of API calls cannot exceed 200. @property consumptionPricingType Pricing model used for consumption-based charges. @property createdAt Time that the rate plan was created in milliseconds since epoch. @property currencyCode Currency to be used for billing. Consists of a three-letter code as defined by the ISO 4217 standard. @property description Description of the rate plan. @property displayName Display name of the rate plan. @property endTime Time when the rate plan will expire in milliseconds since epoch. Set to 0 or null to indicate that the rate plan should never expire. @property fixedFeeFrequency Frequency at which the fixed fee is charged. @property fixedRecurringFee Fixed amount that is charged at a defined interval and billed in advance of use of the API product. The fee will be prorated for the first billing period. @property lastModifiedAt Time the rate plan was last modified in milliseconds since epoch. @property name Name of the rate plan. @property paymentFundingModel DEPRECATED: This field is no longer supported and will eventually be removed when Apigee Hybrid 1.5/1.6 is no longer supported. Instead, use the billingType field inside DeveloperMonetizationConfig resource. Flag that specifies the billing account type, prepaid or postpaid. @property revenueShareRates Details of the revenue sharing model. @property revenueShareType Method used to calculate the revenue that is shared with developers. @property setupFee Initial, one-time fee paid when purchasing the API product. @property startTime Time when the rate plan becomes active in milliseconds since epoch. @property state Current state of the rate plan (draft or published).

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard