Skip to content

Commit

Permalink
Merge pull request #528 from wub/patch-2
Browse files Browse the repository at this point in the history
Add CustomAudience Resource Name helper
  • Loading branch information
Raibaz authored Jul 10, 2023
2 parents ca8e951 + 1c444a0 commit c564e4e
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Google.Ads.GoogleAds/src/V14/ResourceNames.cs
Original file line number Diff line number Diff line change
Expand Up @@ -436,6 +436,11 @@ public static string CurrencyConstant(string currencyCode)
return $"currencyConstants/{currencyCode}";
}

public static string CustomAudience(long customerId, long customAudienceId)
{
return $"customers/{customerId}/customAudiences/{customAudienceId}";
}

public static string CustomConversionGoal(long customerId, long goalId)
{
return $"customers/{customerId}/customConversionGoals/{goalId}";
Expand Down

0 comments on commit c564e4e

Please sign in to comment.