namespace Chartboost.Mediation.AmazonPublisherServices.Common { #nullable enable /// /// The Chartboost Mediation Amazon Publisher Services (APS) adapter. /// public interface IAmazonPublisherServicesAdapter { /// /// Flag that can optionally be set to enable the partner's test mode. /// Disabled by default. /// public bool TestMode { get; set; } /// /// Flag that can optionally be set to enable the partner's verbose logging. /// Disabled by default. /// public bool VerboseLogging { get; set; } /// /// /// public PreBiddingListener? PreBiddingListener { get; set; } } #nullable disable }