Show / Hide Table of Contents

Class ISN_SKProduct

Information about a product previously registered in App Store Connect.

Inheritance
System.Object
ISN_SKProduct
Namespace: SA.iOS.StoreKit
Assembly: cs.temp.dll.dll
Syntax
public class ISN_SKProduct : ISN_NativeObject

Properties

Discounts

An array of subscription offers available for the product. The discounts array contains all of the subscription offers that you set up in App Store Connect for this product productIdentifier. It's up to the logic in your app to decide which offer to present to the user.

Declaration
public List<ISN_SKProductDiscount> Discounts { get; }
Property Value
Type Description
List<ISN_SKProductDiscount>

Icon

Gets icon of the product

Declaration
public Texture2D Icon { get; set; }
Property Value
Type Description
Texture2D

IntroductoryPrice

The object containing introductory price information for the product.

Declaration
public ISN_SKProductDiscount IntroductoryPrice { get; }
Property Value
Type Description
ISN_SKProductDiscount

LocalizedDescription

A description of the product.

Declaration
public string LocalizedDescription { get; set; }
Property Value
Type Description
System.String

LocalizedPrice

The locale used to format the price of the product.

Declaration
public string LocalizedPrice { get; }
Property Value
Type Description
System.String

LocalizedTitle

The name of the product.

Declaration
public string LocalizedTitle { get; set; }
Property Value
Type Description
System.String

Price

The cost of the product in the local currency.

Declaration
public float Price { get; set; }
Property Value
Type Description
System.Single

PriceInMicros

Gets the price in micros.

Declaration
public long PriceInMicros { get; }
Property Value
Type Description
System.Int64

PriceLocale

The locale used to format the price of the product.

Declaration
public ISN_NSLocale PriceLocale { get; }
Property Value
Type Description
ISN_NSLocale

ProductIdentifier

The string that identifies the product to the Apple App Store.

Declaration
public string ProductIdentifier { get; set; }
Property Value
Type Description
System.String

SubscriptionPeriod

The period details for products that are subscriptions.

Declaration
public ISN_SKProductSubscriptionPeriod SubscriptionPeriod { get; }
Property Value
Type Description
ISN_SKProductSubscriptionPeriod

Type

Type of the product

Declaration
public ISN_SKProductType Type { get; set; }
Property Value
Type Description
ISN_SKProductType
In This Article
Back to top Generated by DocFX