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