Essential Kit
Loading...
Searching...
No Matches
BillingProductOfferRedeemDetails

Represents details of a product offer to be redeemed. More...

Classes

class  AndroidProperties
 Represents the Android platform properties for redeeming a product offer. More...
 
class  Builder
 Represents a builder class for BillingProductOfferRedeemDetails. More...
 
class  IosProperties
 Represents the iOS platform properties for redeeming a product offer. More...
 

Properties

IosProperties IosPlatformProperties [get]
 Represents the iOS platform properties for redeeming a product offer.
 
AndroidProperties AndroidPlatformProperties [get]
 Represents the Android platform properties for redeeming a product offer.
 

Detailed Description

The following code snippet demonstrates how to create an instance of BillingProductOfferRedeemDetails:

var offerRedeemDetails = new BillingProductOfferRedeemDetails.Builder()
.SetIosPlatformProperties("offerId", "keyId", "nonce", "signature", 123456)
.Build();
Represents a builder class for BillingProductOfferRedeemDetails.
Definition BillingProductOfferRedeemDetails.cs:125
Builder SetIosPlatformProperties(string offerId, string keyId, string nonce, string signature, long timestamp)
Sets the iOS platform properties for the BillingProductOfferRedeemDetails being built.
Definition BillingProductOfferRedeemDetails.cs:144
Builder SetAndroidPlatformProperties(string offerId)
Sets the Android platform properties for the BillingProductOfferRedeemDetails being built.
Definition BillingProductOfferRedeemDetails.cs:155
Represents details of a product offer to be redeemed.
Definition BillingProductOfferRedeemDetails.cs:18
Remarks
This class considers only properties relavent to the platform. So you can just set the properties for iOS or Android at once or with dummy values for other platforms.