DT FairBid provides access to initialization information for integrated third-party SDK.
Two methods are available. The first informs that the initialization of the network SDK was successful, the second will inform of an error.
In both methods, the network name is an additional parameter. Checking the initialization status of the adapter and its network can be useful before performing an ad request for a given network.
Unity
public interface FairBidListener
{
void OnNetworkStarted(MediatedNetwork network);
void OnNetworkFailedToStart(MediatedNetwork network, string error);
}