--- v19/resources/asset_group.proto 2025-04-14 05:29:53.000000000 +0000 +++ v19-1/resources/asset_group.proto 2025-04-14 05:30:02.000000000 +0000 @@ -39,6 +42,8 @@ option (google.api.resource) = { type: "googleads.googleapis.com/AssetGroup" pattern: "customers/{customer_id}/assetGroups/{asset_group_id}" + plural: "assetGroups" + singular: "assetGroup" }; // Immutable. The resource name of the asset group. @@ -105,4 +110,50 @@ // Output only. Overall ad strength of this asset group. google.ads.googleads.v19.enums.AdStrengthEnum.AdStrength ad_strength = 10 [(google.api.field_behavior) = OUTPUT_ONLY]; + + // Output only. The asset coverage of this asset group. + AssetCoverage asset_coverage = 13 [(google.api.field_behavior) = OUTPUT_ONLY]; +} + +// Information about the asset coverage of an asset group. +message AssetCoverage { + // Output only. A list of action items to improve the ad strength of an asset + // group. + repeated AdStrengthActionItem ad_strength_action_items = 1 + [(google.api.field_behavior) = OUTPUT_ONLY]; +} + +// An action item to improve the ad strength of an asset group. +message AdStrengthActionItem { + // The details of the asset to add. + message AddAssetDetails { + // Output only. The asset field type of the asset(s) to add. + google.ads.googleads.v19.enums.AssetFieldTypeEnum.AssetFieldType + asset_field_type = 1 [(google.api.field_behavior) = OUTPUT_ONLY]; + + // Output only. The number of assets to add. + optional int32 asset_count = 2 [(google.api.field_behavior) = OUTPUT_ONLY]; + + // Output only. For video field types, the required aspect ratio of the + // video. When unset and asset_field_type is YOUTUBE_VIDEO, the system + // recommends the advertiser upload any YouTube video, regardless of aspect + // ratio. + optional google.ads.googleads.v19.enums + .AssetCoverageVideoAspectRatioRequirementEnum + .AssetCoverageVideoAspectRatioRequirement + video_aspect_ratio_requirement = 3 + [(google.api.field_behavior) = OUTPUT_ONLY]; + } + + // Output only. The action item type. + google.ads.googleads.v19.enums.AdStrengthActionItemTypeEnum + .AdStrengthActionItemType action_item_type = 1 + [(google.api.field_behavior) = OUTPUT_ONLY]; + + // The details of this action item. + oneof action_details { + // Output only. The action item details for action item type ADD_ASSET. + AddAssetDetails add_asset_details = 2 + [(google.api.field_behavior) = OUTPUT_ONLY]; + } }
/resources/asset_group.proto
除非另有註明,否則本頁面中的內容是採用創用 CC 姓名標示 4.0 授權,程式碼範例則為阿帕契 2.0 授權。詳情請參閱《Google Developers 網站政策》。Java 是 Oracle 和/或其關聯企業的註冊商標。
上次更新時間:2025-05-17 (世界標準時間)。