Interface IReceiptValidationSuccessResponse
Dto to expose the success serialized response of the Verification Payment
Namespace: IdleKit.Gameplay
Assembly: cs.temp.dll.dll
Syntax
public interface IReceiptValidationSuccessResponse
Properties
Message
Explanation indicating why the purchase could not pass verification
Declaration
string Message { get; }
Property Value
Type | Description |
---|---|
String |
Reason
Enumeration indicating why the receipt was not verified
Declaration
string Reason { get; }
Property Value
Type | Description |
---|---|
String |
Result
JSON string of the response
Declaration
string Result { get; }
Property Value
Type | Description |
---|---|
String |
ServerUnixTimestamp
Server unix timestamp of the response
Declaration
long ServerUnixTimestamp { get; }
Property Value
Type | Description |
---|---|
Int64 |
Verified
Boolean that represents if the purchase is valid
Declaration
bool Verified { get; }
Property Value
Type | Description |
---|---|
Boolean |
VerifiedCount
Number of times the purchase has been verified
Declaration
int VerifiedCount { get; }
Property Value
Type | Description |
---|---|
Int32 |