commit | author | age
|
96fe76
|
1 |
// |
L |
2 |
// GADVideoOptions.h |
|
3 |
// Google Mobile Ads SDK |
|
4 |
// |
|
5 |
// Copyright 2016 Google LLC. All rights reserved. |
|
6 |
// |
|
7 |
|
|
8 |
#import <GoogleMobileAds/GADAdLoader.h> |
|
9 |
|
|
10 |
/// Video ad options. |
|
11 |
@interface GADVideoOptions : GADAdLoaderOptions |
|
12 |
|
|
13 |
/// Indicates whether videos should start muted. By default this property value is YES. |
|
14 |
@property(nonatomic, assign) BOOL startMuted; |
|
15 |
|
|
16 |
/// Indicates whether the requested video should have custom controls enabled for |
|
17 |
/// play/pause/mute/unmute. |
|
18 |
@property(nonatomic, assign) BOOL customControlsRequested; |
|
19 |
|
|
20 |
/// Indicates whether the requested video should have the click to expand behavior. |
|
21 |
@property(nonatomic, assign) BOOL clickToExpandRequested; |
|
22 |
|
|
23 |
@end |