mergemilitary/Assets/Plugins/ToukaGames/ToponSDK/kuaishou/KSAdSDK.framework/Headers/KSAdBiddingTokenManager.h

20 lines
529 B
Objective-C
Executable File
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// KSAdBiddingTokenManager.h
// KSUServerBidding
//
// Created by 李姝谊 on 2021/10/29.
//
#import <Foundation/Foundation.h>
@class KSAdBiddingAdModel;
@class KSAdBiddingAdV2Model;
@interface KSAdBiddingTokenManager : NSObject
/// 服务端竞价V1返回token json字符串 是请求广告的参数
+ (NSString *)biddingTokenWithModel:(KSAdBiddingAdModel *)model;
/// 服务端竞价V2返回token json字符串 是请求广告的参数
+ (NSString *)biddingTokenWithModelV2:(KSAdBiddingAdV2Model *)model;
@end