// // GADAdReward.h // Google Mobile Ads SDK // // Copyright 2015 Google Inc. All rights reserved. // #import @interface GADAdReward : NSObject /// Type of the reward. @property(nonatomic, readonly, copy) NSString *type; /// Amount rewarded to the user. @property(nonatomic, readonly, copy) NSDecimalNumber *amount; /// Returns an initialized GADAdReward with the provided reward type and reward amount. rewardType /// and rewardAmount must not be nil. - (instancetype)initWithRewardType:(NSString *)rewardType rewardAmount:(NSDecimalNumber *)rewardAmount NS_DESIGNATED_INITIALIZER; @end