lpw
2024-06-28 6b1d9ec423fd92dbed26cb421e7dec7b5dc9e0ee
commit | author | age
96fe76 1 //
L 2 //  GADNativeAdImage.h
3 //  Google Mobile Ads SDK
4 //
5 //  Copyright 2015 Google LLC. All rights reserved.
6 //
7
8 #import <Foundation/Foundation.h>
9 #import <UIKit/UIKit.h>
10
11 /// Native ad image.
12 @interface GADNativeAdImage : NSObject
13
14 /// The image. If image autoloading is disabled, this property will be nil.
15 @property(nonatomic, readonly, strong, nullable) UIImage *image;
16
17 /// The image's URL.
18 @property(nonatomic, readonly, copy, nullable) NSURL *imageURL;
19
20 /// The image's scale.
21 @property(nonatomic, readonly, assign) CGFloat scale;
22
23 @end