Interface IGoogleOrderInfo
The model encapsulating additional information about a Google order.
Namespace: UnityEngine.Purchasing
Assembly: Unity.Purchasing.dll
Syntax
public interface IGoogleOrderInfo
Properties
ObfuscatedAccountId
The obfuscated account id of the user who made the purchase.
This requires using IGooglePlayConfiguration.SetObfuscatedAccountId.SetObfuscatedAccountId
before the purchase is made.
getAccountIdentifiers
Declaration
string? ObfuscatedAccountId { get; set; }
Property Value
Type | Description |
---|---|
string | Returns the obfuscated account id if it exists, otherwise null is returned. |
ObfuscatedProfileId
The obfuscated profile id of the user who made the purchase.
This requires using IGooglePlayConfiguration.SetObfuscatedProfileId.SetObfuscatedProfileId
before the purchase is made.
getAccountIdentifiers
Declaration
string? ObfuscatedProfileId { get; set; }
Property Value
Type | Description |
---|---|
string | Returns the obfuscated profile id if it exists, otherwise null is returned. |