25 lines
391 B
C
25 lines
391 B
C
|
|
//
|
||
|
|
// MTGBiddingSDK.h
|
||
|
|
// MTGSDKBidding
|
||
|
|
//
|
||
|
|
// Copyright © 2019 Mintegral. All rights reserved.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <Foundation/Foundation.h>
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
#define MTGBiddingSDKVersion @"7.1.4"
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
@interface MTGBiddingSDK : NSObject
|
||
|
|
|
||
|
|
/* BuyerUID is required when you decide to request a bid response on your own server. */
|
||
|
|
+ (NSString *)buyerUID;
|
||
|
|
|
||
|
|
+ (NSString *)buyerUIDWithUnitID:(NSString *)unitID;
|
||
|
|
|
||
|
|
@end
|
||
|
|
|