| | |
| | | |
| | | /// Ad loader options for custom click gestures. Available for allowlisted publishers only. These |
| | | /// options will be ignored for publishers not allowlisted. |
| | | NS_SWIFT_NAME(NativeAdCustomClickGestureOptions) |
| | | @interface GADNativeAdCustomClickGestureOptions : GADAdLoaderOptions |
| | | |
| | | /// The direction in which swipe gestures should be detected and counted as clicks. |
| | | @property(nonatomic, assign) UISwipeGestureRecognizerDirection swipeGestureDirection; |
| | | |
| | | /// Whether tap gestures should continue to be detected and counted as clicks. |
| | | @property(nonatomic, assign) BOOL tapsAllowed; |
| | | @property(nonatomic, assign, getter=areTapsAllowed) BOOL tapsAllowed NS_SWIFT_NAME(areTapsAllowed); |
| | | |
| | | /// Initialize with the direction for detecting swipe gestures and counting them as clicks, and |
| | | /// whether tap gestures are allowed on the ad. |