46 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Objective-C
		
	
	
		
			Executable File
		
	
	
			
		
		
	
	
			46 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Objective-C
		
	
	
		
			Executable File
		
	
	
| //
 | |
| //  MTGBiddingBannerRequestParameter.h
 | |
| //  MTGSDKBidding
 | |
| //
 | |
| //  Copyright © 2019 Mintegral. All rights reserved.
 | |
| //
 | |
| 
 | |
| #import "MTGBiddingRequestParameter.h"
 | |
| #if __has_include(<MTGSDK/MTGSDK.h>)
 | |
|     #import <MTGSDK/MTGAdSize.h>
 | |
| #else
 | |
|     #import "MTGAdSize.h"
 | |
| #endif
 | |
| 
 | |
| NS_ASSUME_NONNULL_BEGIN
 | |
| @interface MTGBiddingBannerRequestParameter : MTGBiddingRequestParameter
 | |
| /**
 | |
|     banner unit size
 | |
|  */
 | |
| @property(nonatomic,assign,readonly)CGSize unitSize;
 | |
| 
 | |
| /**
 | |
|   Initialize an MTGBiddingBannerRequestParameter object
 | |
|   @param unitId unitId
 | |
|   @param basePrice The optional value provided to this method should be double,the requested bid should not be lower than this price if use this value
 | |
|   @param unitSize banner unit size
 | |
|  */
 | |
| - (instancetype)initWithPlacementId:(nullable NSString *)placementId
 | |
|                              unitId:(nonnull NSString *) unitId
 | |
|                           basePrice:(nullable NSNumber *)basePrice
 | |
|                            unitSize:(CGSize)unitSize;
 | |
| 
 | |
| /**
 | |
|  Initialize an MTGBiddingBannerRequestParameter object
 | |
|  @param unitId unitId
 | |
|  @param basePrice The optional value provided to this method should be double,the requested bid should not be lower than this price if use this value
 | |
|  @param bannerSizeType MTGBannerSizeTypeFormat
 | |
| */
 | |
| - (instancetype)initWithPlacementId:(nullable NSString *)placementId
 | |
|                              unitId:(nonnull NSString *) unitId
 | |
|                           basePrice:(nullable NSNumber *)basePrice
 | |
|                      bannerSizeType:(MTGBannerSizeType)bannerSizeType;
 | |
| @end
 | |
| 
 | |
| NS_ASSUME_NONNULL_END
 |