namespace UnityEngine.Purchasing
{
///
/// Reasons for which purchasing initialization could fail.
///
public enum InitializationFailureReason
{
///
/// In App Purchases disabled in device settings.
///
PurchasingUnavailable,
///
/// No products available for purchase,
/// Typically indicates a configuration error.
///
NoProductsAvailable,
///
/// The store reported the app as unknown.
/// Typically indicates the app has not been created
/// on the relevant developer portal, or the wrong
/// identifier has been configured.
///
AppNotKnown
}
}