File tree Expand file tree Collapse file tree 1 file changed +22
-2
lines changed Expand file tree Collapse file tree 1 file changed +22
-2
lines changed Original file line number Diff line number Diff line change @@ -269,7 +269,6 @@ google.ima.Ad = class {
269
269
getMediaUrl ( ) { }
270
270
} ;
271
271
272
-
273
272
/** @const */
274
273
google . ima . AdPodInfo = class {
275
274
/** @return {number } */
@@ -366,7 +365,7 @@ google.ima.AdEvent.Type = {
366
365
* @description Request for the ad server
367
366
* @property {string|undefined } adTagUrl
368
367
* Specifies the ad tag url that is requested from the ad server.
369
- * This parameter is optional if adsReponse is given.
368
+ * This parameter is optional if adsResponse is given.
370
369
* @property {string|undefined } adsResponse
371
370
* Specifies a VAST 2.0 document to be used as the ads response instead of
372
371
* making a request via an ad tag url. This can be useful for debugging
@@ -518,6 +517,9 @@ google.ima.dai.api.Ad = class {
518
517
519
518
/** @return {string } */
520
519
getCreativeAdId ( ) { }
520
+
521
+ /** @return {!Array.<!google.ima.dai.api.CompanionAd> } */
522
+ getCompanionAds ( ) { }
521
523
} ;
522
524
523
525
@@ -536,6 +538,24 @@ google.ima.dai.api.AdPodInfo = class {
536
538
getPodIndex ( ) { }
537
539
} ;
538
540
541
+ /** @const */
542
+ google . ima . dai . api . CompanionAd = class {
543
+ /** @return {?string } */
544
+ getAdSlotId ( ) { }
545
+
546
+ /** @return {string } */
547
+ getContent ( ) { }
548
+
549
+ /** @return {?string } */
550
+ getContentType ( ) { }
551
+
552
+ /** @return {number } */
553
+ getHeight ( ) { }
554
+
555
+ /** @return {?number } */
556
+ getWidth ( ) { }
557
+ } ;
558
+
539
559
540
560
/** @const */
541
561
google . ima . dai . api . CuePoint = class { } ;
You can’t perform that action at this time.
0 commit comments