暫無描述
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

UMONPlacementContent.h 841B

1234567891011121314151617181920
  1. #import <UnityAds/UnityMonetizationPlacementContentState.h>
  2. #import <UnityAds/UMONCustomEvent.h>
  3. NS_ASSUME_NONNULL_BEGIN
  4. @interface UMONPlacementContent : NSObject
  5. - (instancetype)initWithPlacementId: (NSString *)placementId withParams: (NSDictionary *)params;
  6. @property (nonatomic, readonly, getter = isReady) BOOL ready;
  7. @property (nonatomic, readonly) NSString *type;
  8. @property (retain, nonatomic, readonly) NSString *placementId;
  9. @property (nonatomic) UnityMonetizationPlacementContentState state;
  10. @property (nonatomic) NSDictionary *userInfo;
  11. - (void)sendCustomEvent: (UMONCustomEvent *)customEvent;
  12. - (void)sendCustomEvent: (NSString *)type withUserInfo: (NSDictionary<NSString *, NSObject *> *__nullable)userInfo;
  13. - (void)sendCustomEventWithType: (NSString *)type;
  14. - (NSString *) defaultEventCategory;
  15. @end
  16. NS_ASSUME_NONNULL_END