using System.Collections.Generic; using Chartboost.Mediation.Adapters; namespace Chartboost.Mediation.MetaAudienceNetwork.Common { /// /// The Chartboost Mediation MetaAudienceNetwork adapter. /// internal interface IMetaAudienceNetworkAdapter : IPartnerAdapterConfiguration { /// /// Enable/disable Meta Audience Network's test mode. Remember to set this to false in production. /// public bool TestMode { get; set; } /// /// Enable/disable AppLovin's verbose logging. /// public bool VerboseLogging { get; set; } /// /// Optional list of placement IDs to pass into Meta Audience Network's initialization settings. /// If this list should be set, it must be set before initializing . /// public IReadOnlyCollection PlacementIds { get; set; } } }