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.
22 lines
503 B
22 lines
503 B
#import "UPURTransactionDetails.h" |
|
#import "UMONPlacementContent.h" |
|
#import "UMONPromoAdPlacementContent.h" |
|
|
|
typedef NS_ENUM(NSInteger, UMONNativePromoShowType) { |
|
kNativePromoShowTypePreview, |
|
kNativePromoShowTypeFull |
|
}; |
|
|
|
@interface UMONNativePromoAdapter : NSObject |
|
-(instancetype)initWithPromo:(UMONPromoAdPlacementContent *)promo; |
|
|
|
-(void)promoDidShow; |
|
|
|
-(void)promoDidShow:(UMONNativePromoShowType)showType; |
|
|
|
-(void)promoDidClick; |
|
|
|
-(void)promoDidClose; |
|
|
|
-(UMONPromoMetaData *)metadata; |
|
@end
|
|
|