Decomposed Product Ids
data class DecomposedProductIds(val subscriptionId: String, val basePlanType: BasePlanType, val offerType: OfferType, val fullId: String)(source)
Represents a decomposed product ID in the format: productId:basePlan:offer
basePlanType uses BasePlanType:
BasePlanType.Auto when the value is "sw-auto", null, or empty
BasePlanType.Specific when a specific ID is provided
offerType uses OfferType:
OfferType.Auto when the value is "sw-auto", null, or empty
OfferType.None when the value is "sw-none" (no offer)
OfferType.Specific when a specific ID is provided
Constructors
Link copied to clipboard
constructor(subscriptionId: String, basePlanType: BasePlanType, offerType: OfferType, fullId: String)