Interface IAppleOrderInfo
The model encapsulating additional information about an Apple order.
Namespace: UnityEngine.Purchasing
Assembly: Unity.Purchasing.dll
Syntax
public interface IAppleOrderInfo
Properties
AppAccountToken
The app-specific account token associated with the purchase. This is used to link transactions to a specific app account for additional validation.
Declaration
Guid? AppAccountToken { get; set; }
Property Value
Type | Description |
---|---|
Guid? |
AppReceipt
Read the latest App Receipt. Returns null for iOS less than or equal to 6, may also be null on a reinstalling and require refreshing.
Declaration
string? AppReceipt { get; }
Property Value
Type | Description |
---|---|
string |
OriginalTransactionID
The original transaction ID of the purchase.
Declaration
string? OriginalTransactionID { get; set; }
Property Value
Type | Description |
---|---|
string |
OwnershipType
The ownership type of the purchase.
Declaration
OwnershipType OwnershipType { get; set; }
Property Value
Type | Description |
---|---|
OwnershipType |
StoreName
Indicates name of the store.
Declaration
string StoreName { get; set; }
Property Value
Type | Description |
---|---|
string |
jwsRepresentation
The JWS representation containing the transaction information. https://developer.apple.com/documentation/storekit/verificationresult/jwsrepresentation-21vgo
Declaration
string? jwsRepresentation { get; set; }
Property Value
Type | Description |
---|---|
string |