using Chartboost.Mediation.AmazonPublisherServices.Common;
using Chartboost.Mediation.AmazonPublisherServices.Default;
namespace Chartboost.Mediation.AmazonPublisherServices
{
#nullable enable
///
public sealed class AmazonPublisherServicesAdapter
{
///
/// Adapter's Unity version.
///
public static string Version => "4.0.0";
internal static IAmazonPublisherServicesAdapter Instance = new AmazonPublisherServicesDefault();
///
public static bool TestMode { get => Instance.TestMode; set => Instance.TestMode = value; }
///
public static bool VerboseLogging { get => Instance.VerboseLogging; set => Instance.VerboseLogging = value; }
///
public static PreBiddingListener? PreBiddingListener { get => Instance.PreBiddingListener; set => Instance.PreBiddingListener = value; }
}
#nullable disable
}