StoreFrontManifestData

@objc public class StoreFrontManifestData: NSObject, Gloss.Decodable

The JSON data in Manifest will be used to generate this class. This class contains InAppPurchase settings, stores and products data.

  • The url of the endpoint to send receipts to for verification.

    Declaration

    Swift

    public var verifyReceiptURL = ""
  • List of store states and their activation timer references.

    Declaration

    Swift

    public var stateTimers: [String: [StoreStateTimerData]] = [:]
  • List of products where the key is the product ID and the value is the product data.

    Declaration

    Swift

    public var products: [String: ProductData] = [:]
  • Declaration

    Swift

    public required init?(json: JSON)