--- v22/common/ad_asset.proto 2026-01-23 15:36:15.000000000 +0000 +++ v23/common/ad_asset.proto 2026-01-23 15:36:25.000000000 +0000 @@ -78,6 +78,11 @@ // given ad slot can be found. optional AdVideoAssetInventoryPreferences ad_video_asset_inventory_preferences = 1; + + // Defines feature controls for this AdVideoAsset during serving time. + // For example, whether YouTube comments should be enabled for Partnership Ads + // served on YouTube Shorts. + optional AdVideoAssetLinkFeatureControl ad_video_asset_feature_control = 2; } // YouTube Video Asset inventory preferences. @@ -95,6 +100,13 @@ optional bool shorts_preference = 3; } +// YouTube Video Asset feature controls. +message AdVideoAssetLinkFeatureControl { + // Defines if YouTube comments should be enabled for the creative + // using this YouTube video asset served on YouTube Shorts. + optional bool allow_youtube_comments = 1; +} + // A media bundle asset used inside an ad. message AdMediaBundleAsset { // The Asset resource name of this media bundle.
/common/ad_asset.proto
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2026-01-23 UTC.