lpw
2024-06-24 96fe7669fe8da0110590467e2e95ad88c0149112
commit | author | age
96fe76 1 //
L 2 //  GADMediaAspectRatio.h
3 //  Google Mobile Ads SDK
4 //
5 //  Copyright 2019 Google LLC. All rights reserved.
6 //
7
8 #import <Foundation/Foundation.h>
9
10 /// Media aspect ratio.
11 typedef NS_ENUM(NSInteger, GADMediaAspectRatio) {
12   /// Unknown media aspect ratio.
13   GADMediaAspectRatioUnknown = 0,
14   /// Any media aspect ratio.
15   GADMediaAspectRatioAny = 1,
16   /// Landscape media aspect ratio.
17   GADMediaAspectRatioLandscape = 2,
18   /// Portrait media aspect ratio.
19   GADMediaAspectRatioPortrait = 3,
20   /// Close to square media aspect ratio. This is not a strict 1:1 aspect ratio.
21   GADMediaAspectRatioSquare = 4
22 };