namespace Unity.Services.Mediation { /// /// Banner anchors /// public enum BannerAdAnchor { /// /// Top Center of Screen. /// TopCenter = 0, /// /// Top Left of Screen. /// TopLeft = 1, /// /// Top Right of Screen. /// TopRight = 2, /// /// Center of Screen. /// Center = 3, /// ///Middle Left of Screen. /// MiddleLeft = 4, /// /// Middle Right of Screen. /// MiddleRight = 5, /// /// Bottom Center of Screen. /// BottomCenter = 6, /// /// Bottom Left of Screen. /// BottomLeft = 7, /// /// Bottom Right of Screen. /// BottomRight = 8, /// /// Use offset as screen coordinates. /// None = 9, /// /// Indicates the default anchor if none is provided. /// Default = TopCenter } }