1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| //
| // GADMuteThisAdReason.h
| // Google Mobile Ads SDK
| //
| // Copyright 2018 Google LLC. All rights reserved.
| //
|
| #import <Foundation/Foundation.h>
|
| /// Reason for muting the ad.
| @interface GADMuteThisAdReason : NSObject
|
| /// Text that describes the reason for muting this ad. For example "Ad Covered Content".
| @property(nonatomic, readonly, nonnull) NSString *reasonDescription;
|
| @end
|
|