docs.unity3d.com
Search Results for

    Show / Hide Table of Contents

    Class ProductDescription

    A common format for store subsystems to use to describe available In-App Purchases to UnityPurchasing, including purchase state via Receipt and Transaction Identifiers.

    Inheritance
    object
    ProductDescription
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    Namespace: UnityEngine.Purchasing.Extension
    Assembly: Unity.Purchasing.dll
    Syntax
    public class ProductDescription

    Constructors

    ProductDescription(string, ProductMetadata)

    Parametrized Constructor. Without transaction data.

    Declaration
    public ProductDescription(string id, ProductMetadata metadata)
    Parameters
    Type Name Description
    string id

    The id of the product.

    ProductMetadata metadata

    The metadata of the product.

    ProductDescription(string, ProductMetadata, string, string)

    Parametrized Constructor. With transaction data.

    Declaration
    public ProductDescription(string id, ProductMetadata metadata, string receipt, string transactionId)
    Parameters
    Type Name Description
    string id

    The id of the product.

    ProductMetadata metadata

    The metadata of the product.

    string receipt

    The receipt of the purchase of the product.

    string transactionId

    The transaction id of the purchase of the product.

    ProductDescription(string, ProductMetadata, string, string, ProductType)

    Parametrized Constructor. With the transaction data and type.

    Declaration
    public ProductDescription(string id, ProductMetadata metadata, string receipt, string transactionId, ProductType type)
    Parameters
    Type Name Description
    string id

    The id of the product.

    ProductMetadata metadata

    The metadata of the product.

    string receipt

    The receipt of the purchase of the product.

    string transactionId

    The transaction id of the purchase of the product.

    ProductType type

    The type of the product.

    Fields

    type

    The type of the product, with respect to the store.

    If this ProductDescription was explicitly queried by Unity IAP then it is not necessary to specify a type since it is already known from the product definition.

    Otherwise, if this ProductDescription is unknown, type must be correctly so the product can be handled correctly.

    Declaration
    public ProductType type
    Field Value
    Type Description
    ProductType

    Properties

    metadata

    The Metadate of the product. Contains store interface information.

    Declaration
    public ProductMetadata metadata { get; }
    Property Value
    Type Description
    ProductMetadata

    receipt

    The receipt provided on product purchase.

    Declaration
    public string receipt { get; }
    Property Value
    Type Description
    string

    storeSpecificId

    The store-specific id of this product.

    Declaration
    public string storeSpecificId { get; }
    Property Value
    Type Description
    string

    transactionId

    The transaction id of the purchase of this product.

    Declaration
    public string transactionId { get; set; }
    Property Value
    Type Description
    string

    Methods

    ToString()

    Returns a string representation of the ProductDescription.

    Declaration
    public override string ToString()
    Returns
    Type Description
    string

    A string representation of the ProductDescription.

    Overrides
    object.ToString()
    In This Article
    Back to top
    Copyright © 2025 Unity Technologies — Trademarks and terms of use
    • Legal
    • Privacy Policy
    • Cookie Policy
    • Do Not Sell or Share My Personal Information
    • Your Privacy Choices (Cookie Settings)