struct Data
Used to represent
StoreProductDiscount/id
. Not for public use.StoreKit.Product.SubscriptionOffer
and SKProductDiscount
and provides access to their properties. Information about a subscription offer that you configured in App Store Connect.Framework
@objc(RCStoreProductDiscount) final class StoreProductDiscount
struct Data
StoreProductDiscount/id
. Not for public use.var currencyCode : String?
var localizedPriceString : String
var offerIdentifier : String?
var paymentMode : StoreProductDiscount .PaymentMode
var price: Decimal
var priceDecimalNumber : NSDecimalNumber
var sk1Discount: SK1ProductDiscount ?
SK1ProductDiscount
if this StoreProductDiscount
represents a SKProductDiscount
.var sk2Discount: SK2ProductDiscount ?
SK2ProductDiscount
if this StoreProductDiscount
represents a Product.SubscriptionOffer
.var subscriptionPeriod : SubscriptionPeriod
var type: StoreProductDiscount .DiscountType
enum DiscountType
StoreProductDiscount
Wraps SKProductDiscount.Type
if this StoreProductDiscount
represents a SKProductDiscount
. Wraps Product.SubscriptionOffer.OfferType
if this StoreProductDiscount
represents a Product.SubscriptionOffer
.enum PaymentMode
StoreProductDiscount
Indicates how the product discount price is charged.ObjectiveC.NSObjectProtocol
Swift.CVarArg
Swift.CustomDebugStringConvertible
Swift.CustomStringConvertible
Swift.Encodable
Swift.Equatable
Swift.Hashable
Swift.Identifiable
class IntroEligibility
class PromotionalOffer
StoreProductDiscount
that has been validated and is ready to be used for a purchase.func checkTrialOrIntroDiscountEligibility (productIdentifiers : [String]) async -> [String : IntroEligibility ]
func checkTrialOrIntroDiscountEligibility (productIdentifiers : [String], completion: ([String : IntroEligibility ]) -> Void)
func checkTrialOrIntroDiscountEligibility (product: StoreProduct ) async -> IntroEligibilityStatus
func checkTrialOrIntroDiscountEligibility (product: StoreProduct , completion: (IntroEligibilityStatus ) -> Void)
func getPromotionalOffer (forProductDiscount : StoreProductDiscount , product: StoreProduct ) async throws -> PromotionalOffer
func getPromotionalOffer (forProductDiscount : StoreProductDiscount , product: StoreProduct , completion: (PromotionalOffer ?, Error?) -> Void)
PromotionalOffer
to use in purchase(package:promotionalOffer:)
or purchase(product:promotionalOffer:)
. iOS Promotional Offers.func purchase(package: Package, promotionalOffer : PromotionalOffer ) async throws -> PurchaseResultData
Package
. Call this method when a user has decided to purchase a product with an applied discount. Only call this in direct response to user input. From here Purchases
will handle the purchase with StoreKit
and call the PurchaseCompletedBlock
.func purchase(package: Package, promotionalOffer : PromotionalOffer , completion: PurchaseCompletedBlock )
Package
. Call this method when a user has decided to purchase a product with an applied discount. Only call this in direct response to user input. From here Purchases
will handle the purchase with StoreKit
and call the PurchaseCompletedBlock
.func purchase(product: StoreProduct , promotionalOffer : PromotionalOffer ) async throws -> PurchaseResultData
StoreProduct
with an applied PromotionalOffer
. If you are using the Offerings system, use purchase(package:promotionalOffer:completion:)
instead.func purchase(product: StoreProduct , promotionalOffer : PromotionalOffer , completion: PurchaseCompletedBlock )
StoreProduct
with a PromotionalOffer
.