From 445eb498b1a132702866528a5840422066e9f446 Mon Sep 17 00:00:00 2001 From: Mattia Tommasone Date: Thu, 31 Oct 2024 11:36:22 +0100 Subject: [PATCH] Remove unused assetId parameter from the AssetSet resource name Change-Id: I652fead919e2fe024d8713c9af760ea50a8296e3 --- Google.Ads.GoogleAds/src/V16/ResourceNames.cs | 2 +- Google.Ads.GoogleAds/src/V17/ResourceNames.cs | 2 +- Google.Ads.GoogleAds/src/V18/ResourceNames.cs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Google.Ads.GoogleAds/src/V16/ResourceNames.cs b/Google.Ads.GoogleAds/src/V16/ResourceNames.cs index ef80a71ca..91cf85db8 100644 --- a/Google.Ads.GoogleAds/src/V16/ResourceNames.cs +++ b/Google.Ads.GoogleAds/src/V16/ResourceNames.cs @@ -224,7 +224,7 @@ public static string AssetGroupSignal(long customerId, long assetGroupIdCriterio return $"customers/{customerId}/assetGroupSignals/{assetGroupIdCriterionId}"; } - public static string AssetSet(long customerId, long assetSetId, long assetId) + public static string AssetSet(long customerId, long assetSetId) { return $"customers/{customerId}/assetSets/{assetSetId}"; } diff --git a/Google.Ads.GoogleAds/src/V17/ResourceNames.cs b/Google.Ads.GoogleAds/src/V17/ResourceNames.cs index 9063cc4cb..e9e6390c1 100644 --- a/Google.Ads.GoogleAds/src/V17/ResourceNames.cs +++ b/Google.Ads.GoogleAds/src/V17/ResourceNames.cs @@ -226,7 +226,7 @@ public static string AssetGroupSignal(long customerId, long assetGroupIdCriterio return $"customers/{customerId}/assetGroupSignals/{assetGroupIdCriterionId}"; } - public static string AssetSet(long customerId, long assetSetId, long assetId) + public static string AssetSet(long customerId, long assetSetId) { return $"customers/{customerId}/assetSets/{assetSetId}"; } diff --git a/Google.Ads.GoogleAds/src/V18/ResourceNames.cs b/Google.Ads.GoogleAds/src/V18/ResourceNames.cs index 8b9a469f2..2fd82028d 100644 --- a/Google.Ads.GoogleAds/src/V18/ResourceNames.cs +++ b/Google.Ads.GoogleAds/src/V18/ResourceNames.cs @@ -224,7 +224,7 @@ public static string AssetGroupSignal(long customerId, long assetGroupIdCriterio return $"customers/{customerId}/assetGroupSignals/{assetGroupIdCriterionId}"; } - public static string AssetSet(long customerId, long assetSetId, long assetId) + public static string AssetSet(long customerId, long assetSetId) { return $"customers/{customerId}/assetSets/{assetSetId}"; }