Class PlayerPurchaseAppleappstoreResponseVerificationStore
Details from the receipt validation service.
Inherited Members
Namespace: Unity.Services.Apis.Economy
Assembly: Unity.Services.Apis.dll
Syntax
[DataContract(Name = "player_purchase_appleappstore_response_verification_store")]
[Preserve]
public class PlayerPurchaseAppleappstoreResponseVerificationStore
  Constructors
PlayerPurchaseAppleappstoreResponseVerificationStore(string, string, string)
Initializes a new instance of the PlayerPurchaseAppleappstoreResponseVerificationStore class.
Declaration
[Preserve]
public PlayerPurchaseAppleappstoreResponseVerificationStore(string code = null, string message = null, string receipt = null)
  Parameters
| Type | Name | Description | 
|---|---|---|
| string | code | The status code sent back from the Apple App Store verification service. (required).  | 
      
| string | message | A textual description of the returned status code. (required).  | 
      
| string | receipt | The full response from the Apple App Store verification service as a JSON encoded string. (required).  | 
      
Properties
Code
The status code sent back from the Apple App Store verification service.
Declaration
[DataMember(Name = "code", IsRequired = true, EmitDefaultValue = true)]
[Preserve]
public string Code { get; set; }
  Property Value
| Type | Description | 
|---|---|
| string | The status code sent back from the Apple App Store verification service.  | 
      
Message
A textual description of the returned status code.
Declaration
[DataMember(Name = "message", IsRequired = true, EmitDefaultValue = true)]
[Preserve]
public string Message { get; set; }
  Property Value
| Type | Description | 
|---|---|
| string | A textual description of the returned status code.  | 
      
Receipt
The full response from the Apple App Store verification service as a JSON encoded string.
Declaration
[DataMember(Name = "receipt", IsRequired = true, EmitDefaultValue = true)]
[Preserve]
public string Receipt { get; set; }
  Property Value
| Type | Description | 
|---|---|
| string | The full response from the Apple App Store verification service as a JSON encoded string.  |