AATKitReward
/**
* Object describing a reward earned by a user for interacting with a Rewarded Video ad.
*/
class AATKitReward(
/**
* Returns the name of the reward.
* @return Name of the reward
*/
val name: String,
/**
* Returns the value of the reward.
* @return Value of the reward
*/
val value: String
)
Last updated