AATReward
@objc public class AATReward: NSObject {
/// String represents the reward name
@objc public let name: String
/// String represents the reward value
@objc public let value: String
}
@interface AATReward : NSObject
/// String represents the reward name
@property (nonatomic, readonly, copy) NSString * _Nonnull name;
/// String represents the reward value
@property (nonatomic, readonly, copy) NSString * _Nonnull value;
@end
Last updated