lpw
2024-06-24 96fe7669fe8da0110590467e2e95ad88c0149112
commit | author | age
96fe76 1 //
L 2 //  GADNativeAdMediaAdLoaderOptions.h
3 //  Google Mobile Ads SDK
4 //
5 //  Copyright 2019 Google LLC. All rights reserved.
6 //
7
8 #import <GoogleMobileAds/GADAdLoader.h>
9 #import <GoogleMobileAds/GADMediaAspectRatio.h>
10
11 /// Ad loader options for native ad media settings.
12 @interface GADNativeAdMediaAdLoaderOptions : GADAdLoaderOptions
13
14 /// Image and video aspect ratios. Defaults to GADMediaAspectRatioUnknown. Portrait, landscape, and
15 /// square aspect ratios are returned when this property is GADMediaAspectRatioUnknown or
16 /// GADMediaAspectRatioAny.
17 @property(nonatomic, assign) GADMediaAspectRatio mediaAspectRatio;
18
19 @end