POBBidding Protocol Reference

Conforms to NSObject
Declared in POBBidding.h

Overview

Ad bidding protocol, which lists methods to be implmented to add new bidder. which is responsible for getting bids from various bidders.

  bidderDelegate required method

The object that acts as the bidder delegate of the bidder & interested in getting notificaiton from bidder about bit success/failure response.

@property (nonatomic, weak) id<POBBidderDelegate> _Nullable bidderDelegate

Discussion

The object that acts as the bidder delegate of the bidder & interested in getting notificaiton from bidder about bit success/failure response.

Declared In

POBBidding.h

  identifier required method

Set/Gets the id/name of bidder.

@property (nonatomic, strong) NSString *identifier

Discussion

Set/Gets the id/name of bidder.

Declared In

POBBidding.h

– requestBids required method

Sends RTB request to fetch the available bids.

- (void)requestBids

Discussion

Sends RTB request to fetch the available bids.

Declared In

POBBidding.h

– bidderResultMappings required method

Returns bidder response dictionary, It contains the metadata about the response e.g. network response time, error reasons, bids…etc

- (NSDictionary<NSString*,POBBidderResult*> *_Nonnull)bidderResultMappings

Discussion

Returns bidder response dictionary, It contains the metadata about the response e.g. network response time, error reasons, bids…etc

Declared In

POBBidding.h

– response

Returns config updated by bidder response.

- (POBResponse *_Nullable)response

Discussion

Returns config updated by bidder response.

Declared In

POBBidding.h