google-ads-api 24.1.0 → 25.1.0-beta.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (76) hide show
  1. package/README.md +9 -1
  2. package/build/{src → cjs}/client.d.ts +6 -4
  3. package/build/{src → cjs}/client.js +4 -4
  4. package/build/{src → cjs}/customer.d.ts +5 -5
  5. package/build/{src → cjs}/customer.js +24 -20
  6. package/build/{src → cjs}/hooks.d.ts +2 -2
  7. package/build/cjs/index.d.ts +9 -0
  8. package/build/{src → cjs}/index.js +22 -20
  9. package/build/{src → cjs}/parser.d.ts +2 -2
  10. package/build/{src → cjs}/parser.js +5 -5
  11. package/build/{src → cjs}/parserRest.js +7 -7
  12. package/build/{src → cjs}/protos/autogen/enums.d.ts +1679 -1180
  13. package/build/{src → cjs}/protos/autogen/enums.js +1696 -1177
  14. package/build/cjs/protos/autogen/fields.d.ts +1191 -0
  15. package/build/cjs/protos/autogen/fields.js +205 -0
  16. package/build/cjs/protos/autogen/resourceNames.d.ts +1668 -0
  17. package/build/cjs/protos/autogen/resourceNames.js +1669 -0
  18. package/build/{src → cjs}/protos/autogen/serviceFactory.d.ts +206 -215
  19. package/build/{src → cjs}/protos/autogen/serviceFactory.js +483 -554
  20. package/build/cjs/protos/index.d.ts +14 -0
  21. package/build/{src → cjs}/protos/index.js +12 -12
  22. package/build/{src → cjs}/query.d.ts +2 -2
  23. package/build/{src → cjs}/query.js +5 -5
  24. package/build/{src → cjs}/service.d.ts +5 -5
  25. package/build/{src → cjs}/service.js +64 -22
  26. package/build/{src → cjs}/types.d.ts +1 -1
  27. package/build/{src → cjs}/utils.d.ts +1 -1
  28. package/build/{src → cjs}/utils.js +2 -2
  29. package/build/cjs/version.d.ts +1 -0
  30. package/build/{src → cjs}/version.js +1 -1
  31. package/build/esm/client.d.ts +19 -0
  32. package/build/esm/client.js +40 -0
  33. package/build/esm/customer.d.ts +71 -0
  34. package/build/esm/customer.js +502 -0
  35. package/build/esm/hooks.d.ts +160 -0
  36. package/build/esm/hooks.js +1 -0
  37. package/build/esm/index.d.ts +9 -0
  38. package/build/esm/index.js +10 -0
  39. package/build/esm/package.json +1 -0
  40. package/build/esm/parser.d.ts +21 -0
  41. package/build/esm/parser.js +113 -0
  42. package/build/esm/parserRest.d.ts +1 -0
  43. package/build/esm/parserRest.js +112 -0
  44. package/build/esm/protos/autogen/enums.d.ts +6002 -0
  45. package/build/esm/protos/autogen/enums.js +6401 -0
  46. package/build/esm/protos/autogen/fields.d.ts +1191 -0
  47. package/build/esm/protos/autogen/fields.js +202 -0
  48. package/build/esm/protos/autogen/resourceNames.d.ts +1668 -0
  49. package/build/esm/protos/autogen/resourceNames.js +1475 -0
  50. package/build/esm/protos/autogen/serviceFactory.d.ts +1825 -0
  51. package/build/esm/protos/autogen/serviceFactory.js +18795 -0
  52. package/build/esm/protos/index.d.ts +14 -0
  53. package/build/esm/protos/index.js +19 -0
  54. package/build/esm/query.d.ts +62 -0
  55. package/build/esm/query.js +304 -0
  56. package/build/esm/service.d.ts +47 -0
  57. package/build/esm/service.js +222 -0
  58. package/build/esm/types.d.ts +75 -0
  59. package/build/esm/types.js +14 -0
  60. package/build/esm/utils.d.ts +49 -0
  61. package/build/esm/utils.js +108 -0
  62. package/build/esm/version.d.ts +1 -0
  63. package/build/esm/version.js +1 -0
  64. package/package.json +50 -11
  65. package/build/src/index.d.ts +0 -8
  66. package/build/src/protos/autogen/fields.d.ts +0 -1122
  67. package/build/src/protos/autogen/fields.js +0 -644
  68. package/build/src/protos/autogen/resourceNames.d.ts +0 -1609
  69. package/build/src/protos/autogen/resourceNames.js +0 -1982
  70. package/build/src/protos/index.d.ts +0 -14
  71. package/build/src/testUtils.d.ts +0 -107
  72. package/build/src/testUtils.js +0 -333
  73. package/build/src/version.d.ts +0 -1
  74. /package/build/{src → cjs}/hooks.js +0 -0
  75. /package/build/{src → cjs}/parserRest.d.ts +0 -0
  76. /package/build/{src → cjs}/types.js +0 -0
@@ -0,0 +1,1668 @@
1
+ type StrNum = string | number;
2
+ export type AccessibleBiddingStrategyResourceName = `customers/${StrNum}/accessibleBiddingStrategies/${StrNum}`;
3
+ /**
4
+ * @param {string | number} customerId
5
+ * @param {string | number} biddingStrategyId
6
+ * @returns `AccessibleBiddingStrategyResourceName`
7
+ * @example const accessibleBiddingStrategy: ResourceNames.AccessibleBiddingStrategyResourceName = ResourceNames.accessibleBiddingStrategy(10987417, 21974834)
8
+ */
9
+ export declare function accessibleBiddingStrategy(customerId: string | number, biddingStrategyId: string | number): AccessibleBiddingStrategyResourceName;
10
+ export type AccountBudgetResourceName = `customers/${StrNum}/accountBudgets/${StrNum}`;
11
+ /**
12
+ * @param {string | number} customerId
13
+ * @param {string | number} accountBudgetId
14
+ * @returns `AccountBudgetResourceName`
15
+ * @example const accountBudget: ResourceNames.AccountBudgetResourceName = ResourceNames.accountBudget(10987417, 21974834)
16
+ */
17
+ export declare function accountBudget(customerId: string | number, accountBudgetId: string | number): AccountBudgetResourceName;
18
+ export type AccountBudgetProposalResourceName = `customers/${StrNum}/accountBudgetProposals/${StrNum}`;
19
+ /**
20
+ * @param {string | number} customerId
21
+ * @param {string | number} accountBudgetProposalId
22
+ * @returns `AccountBudgetProposalResourceName`
23
+ * @example const accountBudgetProposal: ResourceNames.AccountBudgetProposalResourceName = ResourceNames.accountBudgetProposal(10987417, 21974834)
24
+ */
25
+ export declare function accountBudgetProposal(customerId: string | number, accountBudgetProposalId: string | number): AccountBudgetProposalResourceName;
26
+ export type AccountLinkResourceName = `customers/${StrNum}/accountLinks/${StrNum}`;
27
+ /**
28
+ * @param {string | number} customerId
29
+ * @param {string | number} accountLinkId
30
+ * @returns `AccountLinkResourceName`
31
+ * @example const accountLink: ResourceNames.AccountLinkResourceName = ResourceNames.accountLink(10987417, 21974834)
32
+ */
33
+ export declare function accountLink(customerId: string | number, accountLinkId: string | number): AccountLinkResourceName;
34
+ export type AdResourceName = `customers/${StrNum}/ads/${StrNum}`;
35
+ /**
36
+ * @param {string | number} customerId
37
+ * @param {string | number} adId
38
+ * @returns `AdResourceName`
39
+ * @example const ad: ResourceNames.AdResourceName = ResourceNames.ad(10987417, 21974834)
40
+ */
41
+ export declare function ad(customerId: string | number, adId: string | number): AdResourceName;
42
+ export type AdGroupResourceName = `customers/${StrNum}/adGroups/${StrNum}`;
43
+ /**
44
+ * @param {string | number} customerId
45
+ * @param {string | number} adGroupId
46
+ * @returns `AdGroupResourceName`
47
+ * @example const adGroup: ResourceNames.AdGroupResourceName = ResourceNames.adGroup(10987417, 21974834)
48
+ */
49
+ export declare function adGroup(customerId: string | number, adGroupId: string | number): AdGroupResourceName;
50
+ export type AdGroupAdResourceName = `customers/${StrNum}/adGroupAds/${StrNum}~${StrNum}`;
51
+ /**
52
+ * @param {string | number} customerId
53
+ * @param {string | number} adGroupId
54
+ * @param {string | number} adId
55
+ * @returns `AdGroupAdResourceName`
56
+ * @example const adGroupAd: ResourceNames.AdGroupAdResourceName = ResourceNames.adGroupAd(10987417, 21974834, 43949668)
57
+ */
58
+ export declare function adGroupAd(customerId: string | number, adGroupId: string | number, adId: string | number): AdGroupAdResourceName;
59
+ export type AdGroupAdAssetCombinationViewResourceName = `customers/${StrNum}/adGroupAdAssetCombinationViews/${StrNum}~${StrNum}~${StrNum}~${StrNum}`;
60
+ /**
61
+ * @param {string | number} customerId
62
+ * @param {string | number} adGroupId
63
+ * @param {string | number} adId
64
+ * @param {string | number} assetCombinationIdLow
65
+ * @param {string | number} assetCombinationIdHigh
66
+ * @returns `AdGroupAdAssetCombinationViewResourceName`
67
+ * @example const adGroupAdAssetCombinationView: ResourceNames.AdGroupAdAssetCombinationViewResourceName = ResourceNames.adGroupAdAssetCombinationView(10987417, 21974834, 43949668, 87899336, 175798672)
68
+ */
69
+ export declare function adGroupAdAssetCombinationView(customerId: string | number, adGroupId: string | number, adId: string | number, assetCombinationIdLow: string | number, assetCombinationIdHigh: string | number): AdGroupAdAssetCombinationViewResourceName;
70
+ export type AdGroupAdAssetViewResourceName = `customers/${StrNum}/adGroupAdAssetViews/${StrNum}~${StrNum}~${StrNum}~${StrNum}`;
71
+ /**
72
+ * @param {string | number} customerId
73
+ * @param {string | number} adGroupId
74
+ * @param {string | number} adId
75
+ * @param {string | number} assetId
76
+ * @param {string | number} fieldType
77
+ * @returns `AdGroupAdAssetViewResourceName`
78
+ * @example const adGroupAdAssetView: ResourceNames.AdGroupAdAssetViewResourceName = ResourceNames.adGroupAdAssetView(10987417, 21974834, 43949668, 87899336, 175798672)
79
+ */
80
+ export declare function adGroupAdAssetView(customerId: string | number, adGroupId: string | number, adId: string | number, assetId: string | number, fieldType: string | number): AdGroupAdAssetViewResourceName;
81
+ export type AdGroupAdLabelResourceName = `customers/${StrNum}/adGroupAdLabels/${StrNum}~${StrNum}~${StrNum}`;
82
+ /**
83
+ * @param {string | number} customerId
84
+ * @param {string | number} adGroupId
85
+ * @param {string | number} adId
86
+ * @param {string | number} labelId
87
+ * @returns `AdGroupAdLabelResourceName`
88
+ * @example const adGroupAdLabel: ResourceNames.AdGroupAdLabelResourceName = ResourceNames.adGroupAdLabel(10987417, 21974834, 43949668, 87899336)
89
+ */
90
+ export declare function adGroupAdLabel(customerId: string | number, adGroupId: string | number, adId: string | number, labelId: string | number): AdGroupAdLabelResourceName;
91
+ export type AdGroupAssetResourceName = `customers/${StrNum}/adGroupAssets/${StrNum}~${StrNum}~${StrNum}`;
92
+ /**
93
+ * @param {string | number} customerId
94
+ * @param {string | number} adGroupId
95
+ * @param {string | number} assetId
96
+ * @param {string | number} fieldType
97
+ * @returns `AdGroupAssetResourceName`
98
+ * @example const adGroupAsset: ResourceNames.AdGroupAssetResourceName = ResourceNames.adGroupAsset(10987417, 21974834, 43949668, 87899336)
99
+ */
100
+ export declare function adGroupAsset(customerId: string | number, adGroupId: string | number, assetId: string | number, fieldType: string | number): AdGroupAssetResourceName;
101
+ export type AdGroupAssetSetResourceName = `customers/${StrNum}/adGroupAssetSets/${StrNum}~${StrNum}`;
102
+ /**
103
+ * @param {string | number} customerId
104
+ * @param {string | number} adGroupId
105
+ * @param {string | number} assetSetId
106
+ * @returns `AdGroupAssetSetResourceName`
107
+ * @example const adGroupAssetSet: ResourceNames.AdGroupAssetSetResourceName = ResourceNames.adGroupAssetSet(10987417, 21974834, 43949668)
108
+ */
109
+ export declare function adGroupAssetSet(customerId: string | number, adGroupId: string | number, assetSetId: string | number): AdGroupAssetSetResourceName;
110
+ export type AdGroupAudienceViewResourceName = `customers/${StrNum}/adGroupAudienceViews/${StrNum}~${StrNum}`;
111
+ /**
112
+ * @param {string | number} customerId
113
+ * @param {string | number} adGroupId
114
+ * @param {string | number} criterionId
115
+ * @returns `AdGroupAudienceViewResourceName`
116
+ * @example const adGroupAudienceView: ResourceNames.AdGroupAudienceViewResourceName = ResourceNames.adGroupAudienceView(10987417, 21974834, 43949668)
117
+ */
118
+ export declare function adGroupAudienceView(customerId: string | number, adGroupId: string | number, criterionId: string | number): AdGroupAudienceViewResourceName;
119
+ export type AdGroupBidModifierResourceName = `customers/${StrNum}/adGroupBidModifiers/${StrNum}~${StrNum}`;
120
+ /**
121
+ * @param {string | number} customerId
122
+ * @param {string | number} adGroupId
123
+ * @param {string | number} criterionId
124
+ * @returns `AdGroupBidModifierResourceName`
125
+ * @example const adGroupBidModifier: ResourceNames.AdGroupBidModifierResourceName = ResourceNames.adGroupBidModifier(10987417, 21974834, 43949668)
126
+ */
127
+ export declare function adGroupBidModifier(customerId: string | number, adGroupId: string | number, criterionId: string | number): AdGroupBidModifierResourceName;
128
+ export type AdGroupCriterionResourceName = `customers/${StrNum}/adGroupCriteria/${StrNum}~${StrNum}`;
129
+ /**
130
+ * @param {string | number} customerId
131
+ * @param {string | number} adGroupId
132
+ * @param {string | number} criterionId
133
+ * @returns `AdGroupCriterionResourceName`
134
+ * @example const adGroupCriterion: ResourceNames.AdGroupCriterionResourceName = ResourceNames.adGroupCriterion(10987417, 21974834, 43949668)
135
+ */
136
+ export declare function adGroupCriterion(customerId: string | number, adGroupId: string | number, criterionId: string | number): AdGroupCriterionResourceName;
137
+ export type AdGroupCriterionCustomizerResourceName = `customers/${StrNum}/adGroupCriterionCustomizers/${StrNum}~${StrNum}~${StrNum}`;
138
+ /**
139
+ * @param {string | number} customerId
140
+ * @param {string | number} adGroupId
141
+ * @param {string | number} criterionId
142
+ * @param {string | number} customizerAttributeId
143
+ * @returns `AdGroupCriterionCustomizerResourceName`
144
+ * @example const adGroupCriterionCustomizer: ResourceNames.AdGroupCriterionCustomizerResourceName = ResourceNames.adGroupCriterionCustomizer(10987417, 21974834, 43949668, 87899336)
145
+ */
146
+ export declare function adGroupCriterionCustomizer(customerId: string | number, adGroupId: string | number, criterionId: string | number, customizerAttributeId: string | number): AdGroupCriterionCustomizerResourceName;
147
+ export type AdGroupCriterionLabelResourceName = `customers/${StrNum}/adGroupCriterionLabels/${StrNum}~${StrNum}~${StrNum}`;
148
+ /**
149
+ * @param {string | number} customerId
150
+ * @param {string | number} adGroupId
151
+ * @param {string | number} criterionId
152
+ * @param {string | number} labelId
153
+ * @returns `AdGroupCriterionLabelResourceName`
154
+ * @example const adGroupCriterionLabel: ResourceNames.AdGroupCriterionLabelResourceName = ResourceNames.adGroupCriterionLabel(10987417, 21974834, 43949668, 87899336)
155
+ */
156
+ export declare function adGroupCriterionLabel(customerId: string | number, adGroupId: string | number, criterionId: string | number, labelId: string | number): AdGroupCriterionLabelResourceName;
157
+ export type AdGroupCriterionSimulationResourceName = `customers/${StrNum}/adGroupCriterionSimulations/${StrNum}~${StrNum}~${StrNum}~${StrNum}~${StrNum}~${StrNum}`;
158
+ /**
159
+ * @param {string | number} customerId
160
+ * @param {string | number} adGroupId
161
+ * @param {string | number} criterionId
162
+ * @param {string | number} type
163
+ * @param {string | number} modificationMethod
164
+ * @param {string | number} startDate
165
+ * @param {string | number} endDate
166
+ * @returns `AdGroupCriterionSimulationResourceName`
167
+ * @example const adGroupCriterionSimulation: ResourceNames.AdGroupCriterionSimulationResourceName = ResourceNames.adGroupCriterionSimulation(10987417, 21974834, 43949668, 87899336, 175798672, 351597344, 703194688)
168
+ */
169
+ export declare function adGroupCriterionSimulation(customerId: string | number, adGroupId: string | number, criterionId: string | number, type: string | number, modificationMethod: string | number, startDate: string | number, endDate: string | number): AdGroupCriterionSimulationResourceName;
170
+ export type AdGroupCustomizerResourceName = `customers/${StrNum}/adGroupCustomizers/${StrNum}~${StrNum}`;
171
+ /**
172
+ * @param {string | number} customerId
173
+ * @param {string | number} adGroupId
174
+ * @param {string | number} customizerAttributeId
175
+ * @returns `AdGroupCustomizerResourceName`
176
+ * @example const adGroupCustomizer: ResourceNames.AdGroupCustomizerResourceName = ResourceNames.adGroupCustomizer(10987417, 21974834, 43949668)
177
+ */
178
+ export declare function adGroupCustomizer(customerId: string | number, adGroupId: string | number, customizerAttributeId: string | number): AdGroupCustomizerResourceName;
179
+ export type AdGroupLabelResourceName = `customers/${StrNum}/adGroupLabels/${StrNum}~${StrNum}`;
180
+ /**
181
+ * @param {string | number} customerId
182
+ * @param {string | number} adGroupId
183
+ * @param {string | number} labelId
184
+ * @returns `AdGroupLabelResourceName`
185
+ * @example const adGroupLabel: ResourceNames.AdGroupLabelResourceName = ResourceNames.adGroupLabel(10987417, 21974834, 43949668)
186
+ */
187
+ export declare function adGroupLabel(customerId: string | number, adGroupId: string | number, labelId: string | number): AdGroupLabelResourceName;
188
+ export type AdGroupSimulationResourceName = `customers/${StrNum}/adGroupSimulations/${StrNum}~${StrNum}~${StrNum}~${StrNum}~${StrNum}`;
189
+ /**
190
+ * @param {string | number} customerId
191
+ * @param {string | number} adGroupId
192
+ * @param {string | number} type
193
+ * @param {string | number} modificationMethod
194
+ * @param {string | number} startDate
195
+ * @param {string | number} endDate
196
+ * @returns `AdGroupSimulationResourceName`
197
+ * @example const adGroupSimulation: ResourceNames.AdGroupSimulationResourceName = ResourceNames.adGroupSimulation(10987417, 21974834, 43949668, 87899336, 175798672, 351597344)
198
+ */
199
+ export declare function adGroupSimulation(customerId: string | number, adGroupId: string | number, type: string | number, modificationMethod: string | number, startDate: string | number, endDate: string | number): AdGroupSimulationResourceName;
200
+ export type AdParameterResourceName = `customers/${StrNum}/adParameters/${StrNum}~${StrNum}~${StrNum}`;
201
+ /**
202
+ * @param {string | number} customerId
203
+ * @param {string | number} adGroupId
204
+ * @param {string | number} criterionId
205
+ * @param {string | number} parameterIndex
206
+ * @returns `AdParameterResourceName`
207
+ * @example const adParameter: ResourceNames.AdParameterResourceName = ResourceNames.adParameter(10987417, 21974834, 43949668, 87899336)
208
+ */
209
+ export declare function adParameter(customerId: string | number, adGroupId: string | number, criterionId: string | number, parameterIndex: string | number): AdParameterResourceName;
210
+ export type AdScheduleViewResourceName = `customers/${StrNum}/adScheduleViews/${StrNum}~${StrNum}`;
211
+ /**
212
+ * @param {string | number} customerId
213
+ * @param {string | number} campaignId
214
+ * @param {string | number} criterionId
215
+ * @returns `AdScheduleViewResourceName`
216
+ * @example const adScheduleView: ResourceNames.AdScheduleViewResourceName = ResourceNames.adScheduleView(10987417, 21974834, 43949668)
217
+ */
218
+ export declare function adScheduleView(customerId: string | number, campaignId: string | number, criterionId: string | number): AdScheduleViewResourceName;
219
+ export type AgeRangeViewResourceName = `customers/${StrNum}/ageRangeViews/${StrNum}~${StrNum}`;
220
+ /**
221
+ * @param {string | number} customerId
222
+ * @param {string | number} adGroupId
223
+ * @param {string | number} criterionId
224
+ * @returns `AgeRangeViewResourceName`
225
+ * @example const ageRangeView: ResourceNames.AgeRangeViewResourceName = ResourceNames.ageRangeView(10987417, 21974834, 43949668)
226
+ */
227
+ export declare function ageRangeView(customerId: string | number, adGroupId: string | number, criterionId: string | number): AgeRangeViewResourceName;
228
+ export type AiMaxSearchTermAdCombinationViewResourceName = `customers/${StrNum}/aiMaxSearchTermAdCombinationViews/${StrNum}~${StrNum}~${StrNum}~${StrNum}`;
229
+ /**
230
+ * @param {string | number} customerId
231
+ * @param {string | number} adGroupId
232
+ * @param {string | number} searchTerm
233
+ * @param {string | number} landingPage
234
+ * @param {string | number} headline
235
+ * @returns `AiMaxSearchTermAdCombinationViewResourceName`
236
+ * @example const aiMaxSearchTermAdCombinationView: ResourceNames.AiMaxSearchTermAdCombinationViewResourceName = ResourceNames.aiMaxSearchTermAdCombinationView(10987417, 21974834, 43949668, 87899336, 175798672)
237
+ */
238
+ export declare function aiMaxSearchTermAdCombinationView(customerId: string | number, adGroupId: string | number, searchTerm: string | number, landingPage: string | number, headline: string | number): AiMaxSearchTermAdCombinationViewResourceName;
239
+ export type AndroidPrivacySharedKeyGoogleAdGroupResourceName = `customers/${StrNum}/androidPrivacySharedKeyGoogleAdGroups/${StrNum}~${StrNum}~${StrNum}~${StrNum}~${StrNum}`;
240
+ /**
241
+ * @param {string | number} customerId
242
+ * @param {string | number} campaignId
243
+ * @param {string | number} adGroupId
244
+ * @param {string | number} androidPrivacyInteractionType
245
+ * @param {string | number} androidPrivacyNetworkType
246
+ * @param {string | number} androidPrivacyInteractionDate
247
+ * @returns `AndroidPrivacySharedKeyGoogleAdGroupResourceName`
248
+ * @example const androidPrivacySharedKeyGoogleAdGroup: ResourceNames.AndroidPrivacySharedKeyGoogleAdGroupResourceName = ResourceNames.androidPrivacySharedKeyGoogleAdGroup(10987417, 21974834, 43949668, 87899336, 175798672, 351597344)
249
+ */
250
+ export declare function androidPrivacySharedKeyGoogleAdGroup(customerId: string | number, campaignId: string | number, adGroupId: string | number, androidPrivacyInteractionType: string | number, androidPrivacyNetworkType: string | number, androidPrivacyInteractionDate: string | number): AndroidPrivacySharedKeyGoogleAdGroupResourceName;
251
+ export type AndroidPrivacySharedKeyGoogleCampaignResourceName = `customers/${StrNum}/androidPrivacySharedKeyGoogleCampaigns/${StrNum}~${StrNum}~${StrNum}`;
252
+ /**
253
+ * @param {string | number} customerId
254
+ * @param {string | number} campaignId
255
+ * @param {string | number} androidPrivacyInteractionType
256
+ * @param {string | number} androidPrivacyInteractionDate
257
+ * @returns `AndroidPrivacySharedKeyGoogleCampaignResourceName`
258
+ * @example const androidPrivacySharedKeyGoogleCampaign: ResourceNames.AndroidPrivacySharedKeyGoogleCampaignResourceName = ResourceNames.androidPrivacySharedKeyGoogleCampaign(10987417, 21974834, 43949668, 87899336)
259
+ */
260
+ export declare function androidPrivacySharedKeyGoogleCampaign(customerId: string | number, campaignId: string | number, androidPrivacyInteractionType: string | number, androidPrivacyInteractionDate: string | number): AndroidPrivacySharedKeyGoogleCampaignResourceName;
261
+ export type AndroidPrivacySharedKeyGoogleNetworkTypeResourceName = `customers/${StrNum}/androidPrivacySharedKeyGoogleNetworkTypes/${StrNum}~${StrNum}~${StrNum}~${StrNum}`;
262
+ /**
263
+ * @param {string | number} customerId
264
+ * @param {string | number} campaignId
265
+ * @param {string | number} androidPrivacyInteractionType
266
+ * @param {string | number} androidPrivacyNetworkType
267
+ * @param {string | number} androidPrivacyInteractionDate
268
+ * @returns `AndroidPrivacySharedKeyGoogleNetworkTypeResourceName`
269
+ * @example const androidPrivacySharedKeyGoogleNetworkType: ResourceNames.AndroidPrivacySharedKeyGoogleNetworkTypeResourceName = ResourceNames.androidPrivacySharedKeyGoogleNetworkType(10987417, 21974834, 43949668, 87899336, 175798672)
270
+ */
271
+ export declare function androidPrivacySharedKeyGoogleNetworkType(customerId: string | number, campaignId: string | number, androidPrivacyInteractionType: string | number, androidPrivacyNetworkType: string | number, androidPrivacyInteractionDate: string | number): AndroidPrivacySharedKeyGoogleNetworkTypeResourceName;
272
+ export type AppTopCombinationViewResourceName = `customers/${StrNum}/appTopCombinationViews/${StrNum}~${StrNum}~${StrNum}`;
273
+ /**
274
+ * @param {string | number} customerId
275
+ * @param {string | number} adGroupId
276
+ * @param {string | number} adId
277
+ * @param {string | number} assetCombinationCategory
278
+ * @returns `AppTopCombinationViewResourceName`
279
+ * @example const appTopCombinationView: ResourceNames.AppTopCombinationViewResourceName = ResourceNames.appTopCombinationView(10987417, 21974834, 43949668, 87899336)
280
+ */
281
+ export declare function appTopCombinationView(customerId: string | number, adGroupId: string | number, adId: string | number, assetCombinationCategory: string | number): AppTopCombinationViewResourceName;
282
+ export type AppliedIncentiveResourceName = `customers/${StrNum}/appliedIncentives/${StrNum}`;
283
+ /**
284
+ * @param {string | number} customerId
285
+ * @param {string | number} couponCode
286
+ * @returns `AppliedIncentiveResourceName`
287
+ * @example const appliedIncentive: ResourceNames.AppliedIncentiveResourceName = ResourceNames.appliedIncentive(10987417, 21974834)
288
+ */
289
+ export declare function appliedIncentive(customerId: string | number, couponCode: string | number): AppliedIncentiveResourceName;
290
+ export type AssetResourceName = `customers/${StrNum}/assets/${StrNum}`;
291
+ /**
292
+ * @param {string | number} customerId
293
+ * @param {string | number} assetId
294
+ * @returns `AssetResourceName`
295
+ * @example const asset: ResourceNames.AssetResourceName = ResourceNames.asset(10987417, 21974834)
296
+ */
297
+ export declare function asset(customerId: string | number, assetId: string | number): AssetResourceName;
298
+ export type AssetFieldTypeViewResourceName = `customers/${StrNum}/assetFieldTypeViews/${StrNum}`;
299
+ /**
300
+ * @param {string | number} customerId
301
+ * @param {string | number} fieldType
302
+ * @returns `AssetFieldTypeViewResourceName`
303
+ * @example const assetFieldTypeView: ResourceNames.AssetFieldTypeViewResourceName = ResourceNames.assetFieldTypeView(10987417, 21974834)
304
+ */
305
+ export declare function assetFieldTypeView(customerId: string | number, fieldType: string | number): AssetFieldTypeViewResourceName;
306
+ export type AssetGroupResourceName = `customers/${StrNum}/assetGroups/${StrNum}`;
307
+ /**
308
+ * @param {string | number} customerId
309
+ * @param {string | number} assetGroupId
310
+ * @returns `AssetGroupResourceName`
311
+ * @example const assetGroup: ResourceNames.AssetGroupResourceName = ResourceNames.assetGroup(10987417, 21974834)
312
+ */
313
+ export declare function assetGroup(customerId: string | number, assetGroupId: string | number): AssetGroupResourceName;
314
+ export type AssetGroupAssetResourceName = `customers/${StrNum}/assetGroupAssets/${StrNum}~${StrNum}~${StrNum}`;
315
+ /**
316
+ * @param {string | number} customerId
317
+ * @param {string | number} assetGroupId
318
+ * @param {string | number} assetId
319
+ * @param {string | number} fieldType
320
+ * @returns `AssetGroupAssetResourceName`
321
+ * @example const assetGroupAsset: ResourceNames.AssetGroupAssetResourceName = ResourceNames.assetGroupAsset(10987417, 21974834, 43949668, 87899336)
322
+ */
323
+ export declare function assetGroupAsset(customerId: string | number, assetGroupId: string | number, assetId: string | number, fieldType: string | number): AssetGroupAssetResourceName;
324
+ export type AssetGroupListingGroupFilterResourceName = `customers/${StrNum}/assetGroupListingGroupFilters/${StrNum}~${StrNum}`;
325
+ /**
326
+ * @param {string | number} customerId
327
+ * @param {string | number} assetGroupId
328
+ * @param {string | number} listingGroupFilterId
329
+ * @returns `AssetGroupListingGroupFilterResourceName`
330
+ * @example const assetGroupListingGroupFilter: ResourceNames.AssetGroupListingGroupFilterResourceName = ResourceNames.assetGroupListingGroupFilter(10987417, 21974834, 43949668)
331
+ */
332
+ export declare function assetGroupListingGroupFilter(customerId: string | number, assetGroupId: string | number, listingGroupFilterId: string | number): AssetGroupListingGroupFilterResourceName;
333
+ export type AssetGroupProductGroupViewResourceName = `customers/${StrNum}/assetGroupProductGroupViews/${StrNum}~${StrNum}`;
334
+ /**
335
+ * @param {string | number} customerId
336
+ * @param {string | number} assetGroupId
337
+ * @param {string | number} listingGroupFilterId
338
+ * @returns `AssetGroupProductGroupViewResourceName`
339
+ * @example const assetGroupProductGroupView: ResourceNames.AssetGroupProductGroupViewResourceName = ResourceNames.assetGroupProductGroupView(10987417, 21974834, 43949668)
340
+ */
341
+ export declare function assetGroupProductGroupView(customerId: string | number, assetGroupId: string | number, listingGroupFilterId: string | number): AssetGroupProductGroupViewResourceName;
342
+ export type AssetGroupSignalResourceName = `customers/${StrNum}/assetGroupSignals/${StrNum}~${StrNum}`;
343
+ /**
344
+ * @param {string | number} customerId
345
+ * @param {string | number} assetGroupId
346
+ * @param {string | number} criterionId
347
+ * @returns `AssetGroupSignalResourceName`
348
+ * @example const assetGroupSignal: ResourceNames.AssetGroupSignalResourceName = ResourceNames.assetGroupSignal(10987417, 21974834, 43949668)
349
+ */
350
+ export declare function assetGroupSignal(customerId: string | number, assetGroupId: string | number, criterionId: string | number): AssetGroupSignalResourceName;
351
+ export type AssetGroupTopCombinationViewResourceName = `customers/${StrNum}/assetGroupTopCombinationViews/${StrNum}~${StrNum}`;
352
+ /**
353
+ * @param {string | number} customerId
354
+ * @param {string | number} assetGroupId
355
+ * @param {string | number} assetCombinationCategory
356
+ * @returns `AssetGroupTopCombinationViewResourceName`
357
+ * @example const assetGroupTopCombinationView: ResourceNames.AssetGroupTopCombinationViewResourceName = ResourceNames.assetGroupTopCombinationView(10987417, 21974834, 43949668)
358
+ */
359
+ export declare function assetGroupTopCombinationView(customerId: string | number, assetGroupId: string | number, assetCombinationCategory: string | number): AssetGroupTopCombinationViewResourceName;
360
+ export type AssetSetResourceName = `customers/${StrNum}/assetSets/${StrNum}`;
361
+ /**
362
+ * @param {string | number} customerId
363
+ * @param {string | number} assetSetId
364
+ * @returns `AssetSetResourceName`
365
+ * @example const assetSet: ResourceNames.AssetSetResourceName = ResourceNames.assetSet(10987417, 21974834)
366
+ */
367
+ export declare function assetSet(customerId: string | number, assetSetId: string | number): AssetSetResourceName;
368
+ export type AssetSetAssetResourceName = `customers/${StrNum}/assetSetAssets/${StrNum}~${StrNum}`;
369
+ /**
370
+ * @param {string | number} customerId
371
+ * @param {string | number} assetSetId
372
+ * @param {string | number} assetId
373
+ * @returns `AssetSetAssetResourceName`
374
+ * @example const assetSetAsset: ResourceNames.AssetSetAssetResourceName = ResourceNames.assetSetAsset(10987417, 21974834, 43949668)
375
+ */
376
+ export declare function assetSetAsset(customerId: string | number, assetSetId: string | number, assetId: string | number): AssetSetAssetResourceName;
377
+ export type AssetSetTypeViewResourceName = `customers/${StrNum}/assetSetTypeViews/${StrNum}`;
378
+ /**
379
+ * @param {string | number} customerId
380
+ * @param {string | number} assetSetType
381
+ * @returns `AssetSetTypeViewResourceName`
382
+ * @example const assetSetTypeView: ResourceNames.AssetSetTypeViewResourceName = ResourceNames.assetSetTypeView(10987417, 21974834)
383
+ */
384
+ export declare function assetSetTypeView(customerId: string | number, assetSetType: string | number): AssetSetTypeViewResourceName;
385
+ export type AudienceResourceName = `customers/${StrNum}/audiences/${StrNum}`;
386
+ /**
387
+ * @param {string | number} customerId
388
+ * @param {string | number} audienceId
389
+ * @returns `AudienceResourceName`
390
+ * @example const audience: ResourceNames.AudienceResourceName = ResourceNames.audience(10987417, 21974834)
391
+ */
392
+ export declare function audience(customerId: string | number, audienceId: string | number): AudienceResourceName;
393
+ export type BatchJobResourceName = `customers/${StrNum}/batchJobs/${StrNum}`;
394
+ /**
395
+ * @param {string | number} customerId
396
+ * @param {string | number} batchJobId
397
+ * @returns `BatchJobResourceName`
398
+ * @example const batchJob: ResourceNames.BatchJobResourceName = ResourceNames.batchJob(10987417, 21974834)
399
+ */
400
+ export declare function batchJob(customerId: string | number, batchJobId: string | number): BatchJobResourceName;
401
+ export type BiddingDataExclusionResourceName = `customers/${StrNum}/biddingDataExclusions/${StrNum}`;
402
+ /**
403
+ * @param {string | number} customerId
404
+ * @param {string | number} seasonalityEventId
405
+ * @returns `BiddingDataExclusionResourceName`
406
+ * @example const biddingDataExclusion: ResourceNames.BiddingDataExclusionResourceName = ResourceNames.biddingDataExclusion(10987417, 21974834)
407
+ */
408
+ export declare function biddingDataExclusion(customerId: string | number, seasonalityEventId: string | number): BiddingDataExclusionResourceName;
409
+ export type BiddingSeasonalityAdjustmentResourceName = `customers/${StrNum}/biddingSeasonalityAdjustments/${StrNum}`;
410
+ /**
411
+ * @param {string | number} customerId
412
+ * @param {string | number} seasonalityEventId
413
+ * @returns `BiddingSeasonalityAdjustmentResourceName`
414
+ * @example const biddingSeasonalityAdjustment: ResourceNames.BiddingSeasonalityAdjustmentResourceName = ResourceNames.biddingSeasonalityAdjustment(10987417, 21974834)
415
+ */
416
+ export declare function biddingSeasonalityAdjustment(customerId: string | number, seasonalityEventId: string | number): BiddingSeasonalityAdjustmentResourceName;
417
+ export type BiddingStrategyResourceName = `customers/${StrNum}/biddingStrategies/${StrNum}`;
418
+ /**
419
+ * @param {string | number} customerId
420
+ * @param {string | number} biddingStrategyId
421
+ * @returns `BiddingStrategyResourceName`
422
+ * @example const biddingStrategy: ResourceNames.BiddingStrategyResourceName = ResourceNames.biddingStrategy(10987417, 21974834)
423
+ */
424
+ export declare function biddingStrategy(customerId: string | number, biddingStrategyId: string | number): BiddingStrategyResourceName;
425
+ export type BiddingStrategySimulationResourceName = `customers/${StrNum}/biddingStrategySimulations/${StrNum}~${StrNum}~${StrNum}~${StrNum}~${StrNum}`;
426
+ /**
427
+ * @param {string | number} customerId
428
+ * @param {string | number} biddingStrategyId
429
+ * @param {string | number} type
430
+ * @param {string | number} modificationMethod
431
+ * @param {string | number} startDate
432
+ * @param {string | number} endDate
433
+ * @returns `BiddingStrategySimulationResourceName`
434
+ * @example const biddingStrategySimulation: ResourceNames.BiddingStrategySimulationResourceName = ResourceNames.biddingStrategySimulation(10987417, 21974834, 43949668, 87899336, 175798672, 351597344)
435
+ */
436
+ export declare function biddingStrategySimulation(customerId: string | number, biddingStrategyId: string | number, type: string | number, modificationMethod: string | number, startDate: string | number, endDate: string | number): BiddingStrategySimulationResourceName;
437
+ export type BillingSetupResourceName = `customers/${StrNum}/billingSetups/${StrNum}`;
438
+ /**
439
+ * @param {string | number} customerId
440
+ * @param {string | number} billingSetupId
441
+ * @returns `BillingSetupResourceName`
442
+ * @example const billingSetup: ResourceNames.BillingSetupResourceName = ResourceNames.billingSetup(10987417, 21974834)
443
+ */
444
+ export declare function billingSetup(customerId: string | number, billingSetupId: string | number): BillingSetupResourceName;
445
+ export type CallViewResourceName = `customers/${StrNum}/callViews/${StrNum}`;
446
+ /**
447
+ * @param {string | number} customerId
448
+ * @param {string | number} callDetailId
449
+ * @returns `CallViewResourceName`
450
+ * @example const callView: ResourceNames.CallViewResourceName = ResourceNames.callView(10987417, 21974834)
451
+ */
452
+ export declare function callView(customerId: string | number, callDetailId: string | number): CallViewResourceName;
453
+ export type CampaignResourceName = `customers/${StrNum}/campaigns/${StrNum}`;
454
+ /**
455
+ * @param {string | number} customerId
456
+ * @param {string | number} campaignId
457
+ * @returns `CampaignResourceName`
458
+ * @example const campaign: ResourceNames.CampaignResourceName = ResourceNames.campaign(10987417, 21974834)
459
+ */
460
+ export declare function campaign(customerId: string | number, campaignId: string | number): CampaignResourceName;
461
+ export type CampaignAggregateAssetViewResourceName = `customers/${StrNum}/campaignAggregateAssetViews/${StrNum}~${StrNum}~${StrNum}~${StrNum}`;
462
+ /**
463
+ * @param {string | number} customerId
464
+ * @param {string | number} campaignId
465
+ * @param {string | number} assetId
466
+ * @param {string | number} assetLinkSource
467
+ * @param {string | number} fieldType
468
+ * @returns `CampaignAggregateAssetViewResourceName`
469
+ * @example const campaignAggregateAssetView: ResourceNames.CampaignAggregateAssetViewResourceName = ResourceNames.campaignAggregateAssetView(10987417, 21974834, 43949668, 87899336, 175798672)
470
+ */
471
+ export declare function campaignAggregateAssetView(customerId: string | number, campaignId: string | number, assetId: string | number, assetLinkSource: string | number, fieldType: string | number): CampaignAggregateAssetViewResourceName;
472
+ export type CampaignAssetResourceName = `customers/${StrNum}/campaignAssets/${StrNum}~${StrNum}~${StrNum}`;
473
+ /**
474
+ * @param {string | number} customerId
475
+ * @param {string | number} campaignId
476
+ * @param {string | number} assetId
477
+ * @param {string | number} fieldType
478
+ * @returns `CampaignAssetResourceName`
479
+ * @example const campaignAsset: ResourceNames.CampaignAssetResourceName = ResourceNames.campaignAsset(10987417, 21974834, 43949668, 87899336)
480
+ */
481
+ export declare function campaignAsset(customerId: string | number, campaignId: string | number, assetId: string | number, fieldType: string | number): CampaignAssetResourceName;
482
+ export type CampaignAssetSetResourceName = `customers/${StrNum}/campaignAssetSets/${StrNum}~${StrNum}`;
483
+ /**
484
+ * @param {string | number} customerId
485
+ * @param {string | number} campaignId
486
+ * @param {string | number} assetSetId
487
+ * @returns `CampaignAssetSetResourceName`
488
+ * @example const campaignAssetSet: ResourceNames.CampaignAssetSetResourceName = ResourceNames.campaignAssetSet(10987417, 21974834, 43949668)
489
+ */
490
+ export declare function campaignAssetSet(customerId: string | number, campaignId: string | number, assetSetId: string | number): CampaignAssetSetResourceName;
491
+ export type CampaignAudienceViewResourceName = `customers/${StrNum}/campaignAudienceViews/${StrNum}~${StrNum}`;
492
+ /**
493
+ * @param {string | number} customerId
494
+ * @param {string | number} campaignId
495
+ * @param {string | number} criterionId
496
+ * @returns `CampaignAudienceViewResourceName`
497
+ * @example const campaignAudienceView: ResourceNames.CampaignAudienceViewResourceName = ResourceNames.campaignAudienceView(10987417, 21974834, 43949668)
498
+ */
499
+ export declare function campaignAudienceView(customerId: string | number, campaignId: string | number, criterionId: string | number): CampaignAudienceViewResourceName;
500
+ export type CampaignBidModifierResourceName = `customers/${StrNum}/campaignBidModifiers/${StrNum}~${StrNum}`;
501
+ /**
502
+ * @param {string | number} customerId
503
+ * @param {string | number} campaignId
504
+ * @param {string | number} criterionId
505
+ * @returns `CampaignBidModifierResourceName`
506
+ * @example const campaignBidModifier: ResourceNames.CampaignBidModifierResourceName = ResourceNames.campaignBidModifier(10987417, 21974834, 43949668)
507
+ */
508
+ export declare function campaignBidModifier(customerId: string | number, campaignId: string | number, criterionId: string | number): CampaignBidModifierResourceName;
509
+ export type CampaignBudgetResourceName = `customers/${StrNum}/campaignBudgets/${StrNum}`;
510
+ /**
511
+ * @param {string | number} customerId
512
+ * @param {string | number} campaignBudgetId
513
+ * @returns `CampaignBudgetResourceName`
514
+ * @example const campaignBudget: ResourceNames.CampaignBudgetResourceName = ResourceNames.campaignBudget(10987417, 21974834)
515
+ */
516
+ export declare function campaignBudget(customerId: string | number, campaignBudgetId: string | number): CampaignBudgetResourceName;
517
+ export type CampaignConversionGoalResourceName = `customers/${StrNum}/campaignConversionGoals/${StrNum}~${StrNum}~${StrNum}`;
518
+ /**
519
+ * @param {string | number} customerId
520
+ * @param {string | number} campaignId
521
+ * @param {string | number} category
522
+ * @param {string | number} source
523
+ * @returns `CampaignConversionGoalResourceName`
524
+ * @example const campaignConversionGoal: ResourceNames.CampaignConversionGoalResourceName = ResourceNames.campaignConversionGoal(10987417, 21974834, 43949668, 87899336)
525
+ */
526
+ export declare function campaignConversionGoal(customerId: string | number, campaignId: string | number, category: string | number, source: string | number): CampaignConversionGoalResourceName;
527
+ export type CampaignCriterionResourceName = `customers/${StrNum}/campaignCriteria/${StrNum}~${StrNum}`;
528
+ /**
529
+ * @param {string | number} customerId
530
+ * @param {string | number} campaignId
531
+ * @param {string | number} criterionId
532
+ * @returns `CampaignCriterionResourceName`
533
+ * @example const campaignCriterion: ResourceNames.CampaignCriterionResourceName = ResourceNames.campaignCriterion(10987417, 21974834, 43949668)
534
+ */
535
+ export declare function campaignCriterion(customerId: string | number, campaignId: string | number, criterionId: string | number): CampaignCriterionResourceName;
536
+ export type CampaignCustomizerResourceName = `customers/${StrNum}/campaignCustomizers/${StrNum}~${StrNum}`;
537
+ /**
538
+ * @param {string | number} customerId
539
+ * @param {string | number} campaignId
540
+ * @param {string | number} customizerAttributeId
541
+ * @returns `CampaignCustomizerResourceName`
542
+ * @example const campaignCustomizer: ResourceNames.CampaignCustomizerResourceName = ResourceNames.campaignCustomizer(10987417, 21974834, 43949668)
543
+ */
544
+ export declare function campaignCustomizer(customerId: string | number, campaignId: string | number, customizerAttributeId: string | number): CampaignCustomizerResourceName;
545
+ export type CampaignDraftResourceName = `customers/${StrNum}/campaignDrafts/${StrNum}~${StrNum}`;
546
+ /**
547
+ * @param {string | number} customerId
548
+ * @param {string | number} baseCampaignId
549
+ * @param {string | number} draftId
550
+ * @returns `CampaignDraftResourceName`
551
+ * @example const campaignDraft: ResourceNames.CampaignDraftResourceName = ResourceNames.campaignDraft(10987417, 21974834, 43949668)
552
+ */
553
+ export declare function campaignDraft(customerId: string | number, baseCampaignId: string | number, draftId: string | number): CampaignDraftResourceName;
554
+ export type CampaignGoalConfigResourceName = `customers/${StrNum}/campaignGoalConfigs/${StrNum}~${StrNum}`;
555
+ /**
556
+ * @param {string | number} customerId
557
+ * @param {string | number} campaignId
558
+ * @param {string | number} unifiedGoalId
559
+ * @returns `CampaignGoalConfigResourceName`
560
+ * @example const campaignGoalConfig: ResourceNames.CampaignGoalConfigResourceName = ResourceNames.campaignGoalConfig(10987417, 21974834, 43949668)
561
+ */
562
+ export declare function campaignGoalConfig(customerId: string | number, campaignId: string | number, unifiedGoalId: string | number): CampaignGoalConfigResourceName;
563
+ export type CampaignGroupResourceName = `customers/${StrNum}/campaignGroups/${StrNum}`;
564
+ /**
565
+ * @param {string | number} customerId
566
+ * @param {string | number} campaignGroupId
567
+ * @returns `CampaignGroupResourceName`
568
+ * @example const campaignGroup: ResourceNames.CampaignGroupResourceName = ResourceNames.campaignGroup(10987417, 21974834)
569
+ */
570
+ export declare function campaignGroup(customerId: string | number, campaignGroupId: string | number): CampaignGroupResourceName;
571
+ export type CampaignLabelResourceName = `customers/${StrNum}/campaignLabels/${StrNum}~${StrNum}`;
572
+ /**
573
+ * @param {string | number} customerId
574
+ * @param {string | number} campaignId
575
+ * @param {string | number} labelId
576
+ * @returns `CampaignLabelResourceName`
577
+ * @example const campaignLabel: ResourceNames.CampaignLabelResourceName = ResourceNames.campaignLabel(10987417, 21974834, 43949668)
578
+ */
579
+ export declare function campaignLabel(customerId: string | number, campaignId: string | number, labelId: string | number): CampaignLabelResourceName;
580
+ export type CampaignSearchTermInsightResourceName = `customers/${StrNum}/campaignSearchTermInsights/${StrNum}~${StrNum}`;
581
+ /**
582
+ * @param {string | number} customerId
583
+ * @param {string | number} campaignId
584
+ * @param {string | number} clusterId
585
+ * @returns `CampaignSearchTermInsightResourceName`
586
+ * @example const campaignSearchTermInsight: ResourceNames.CampaignSearchTermInsightResourceName = ResourceNames.campaignSearchTermInsight(10987417, 21974834, 43949668)
587
+ */
588
+ export declare function campaignSearchTermInsight(customerId: string | number, campaignId: string | number, clusterId: string | number): CampaignSearchTermInsightResourceName;
589
+ export type CampaignSearchTermViewResourceName = `customers/${StrNum}/campaignSearchTermViews/${StrNum}~${StrNum}`;
590
+ /**
591
+ * @param {string | number} customerId
592
+ * @param {string | number} campaignId
593
+ * @param {string | number} query
594
+ * @returns `CampaignSearchTermViewResourceName`
595
+ * @example const campaignSearchTermView: ResourceNames.CampaignSearchTermViewResourceName = ResourceNames.campaignSearchTermView(10987417, 21974834, 43949668)
596
+ */
597
+ export declare function campaignSearchTermView(customerId: string | number, campaignId: string | number, query: string | number): CampaignSearchTermViewResourceName;
598
+ export type CampaignSharedSetResourceName = `customers/${StrNum}/campaignSharedSets/${StrNum}~${StrNum}`;
599
+ /**
600
+ * @param {string | number} customerId
601
+ * @param {string | number} campaignId
602
+ * @param {string | number} sharedSetId
603
+ * @returns `CampaignSharedSetResourceName`
604
+ * @example const campaignSharedSet: ResourceNames.CampaignSharedSetResourceName = ResourceNames.campaignSharedSet(10987417, 21974834, 43949668)
605
+ */
606
+ export declare function campaignSharedSet(customerId: string | number, campaignId: string | number, sharedSetId: string | number): CampaignSharedSetResourceName;
607
+ export type CampaignSimulationResourceName = `customers/${StrNum}/campaignSimulations/${StrNum}~${StrNum}~${StrNum}~${StrNum}~${StrNum}`;
608
+ /**
609
+ * @param {string | number} customerId
610
+ * @param {string | number} campaignId
611
+ * @param {string | number} type
612
+ * @param {string | number} modificationMethod
613
+ * @param {string | number} startDate
614
+ * @param {string | number} endDate
615
+ * @returns `CampaignSimulationResourceName`
616
+ * @example const campaignSimulation: ResourceNames.CampaignSimulationResourceName = ResourceNames.campaignSimulation(10987417, 21974834, 43949668, 87899336, 175798672, 351597344)
617
+ */
618
+ export declare function campaignSimulation(customerId: string | number, campaignId: string | number, type: string | number, modificationMethod: string | number, startDate: string | number, endDate: string | number): CampaignSimulationResourceName;
619
+ export type CarrierConstantResourceName = `carrierConstants/${StrNum}`;
620
+ /**
621
+ * @param {string | number} criterionId
622
+ * @returns `CarrierConstantResourceName`
623
+ * @example const carrierConstant: ResourceNames.CarrierConstantResourceName = ResourceNames.carrierConstant(10987417)
624
+ */
625
+ export declare function carrierConstant(criterionId: string | number): CarrierConstantResourceName;
626
+ export type CartDataSalesViewResourceName = `customers/${StrNum}/cartDataSalesView`;
627
+ /**
628
+ * @param {string | number} customerId
629
+ * @returns `CartDataSalesViewResourceName`
630
+ * @example const cartDataSalesView: ResourceNames.CartDataSalesViewResourceName = ResourceNames.cartDataSalesView(10987417)
631
+ */
632
+ export declare function cartDataSalesView(customerId: string | number): CartDataSalesViewResourceName;
633
+ export type ChangeEventResourceName = `customers/${StrNum}/changeEvents/${StrNum}~${StrNum}~${StrNum}`;
634
+ /**
635
+ * @param {string | number} customerId
636
+ * @param {string | number} timestampMicros
637
+ * @param {string | number} commandIndex
638
+ * @param {string | number} mutateIndex
639
+ * @returns `ChangeEventResourceName`
640
+ * @example const changeEvent: ResourceNames.ChangeEventResourceName = ResourceNames.changeEvent(10987417, 21974834, 43949668, 87899336)
641
+ */
642
+ export declare function changeEvent(customerId: string | number, timestampMicros: string | number, commandIndex: string | number, mutateIndex: string | number): ChangeEventResourceName;
643
+ export type ChangeStatusResourceName = `customers/${StrNum}/changeStatus/${StrNum}`;
644
+ /**
645
+ * @param {string | number} customerId
646
+ * @param {string | number} changeStatusId
647
+ * @returns `ChangeStatusResourceName`
648
+ * @example const changeStatus: ResourceNames.ChangeStatusResourceName = ResourceNames.changeStatus(10987417, 21974834)
649
+ */
650
+ export declare function changeStatus(customerId: string | number, changeStatusId: string | number): ChangeStatusResourceName;
651
+ export type ChannelAggregateAssetViewResourceName = `customers/${StrNum}/channelAggregateAssetViews/${StrNum}~${StrNum}~${StrNum}~${StrNum}`;
652
+ /**
653
+ * @param {string | number} customerId
654
+ * @param {string | number} advertisingChannelType
655
+ * @param {string | number} assetId
656
+ * @param {string | number} assetSource
657
+ * @param {string | number} fieldType
658
+ * @returns `ChannelAggregateAssetViewResourceName`
659
+ * @example const channelAggregateAssetView: ResourceNames.ChannelAggregateAssetViewResourceName = ResourceNames.channelAggregateAssetView(10987417, 21974834, 43949668, 87899336, 175798672)
660
+ */
661
+ export declare function channelAggregateAssetView(customerId: string | number, advertisingChannelType: string | number, assetId: string | number, assetSource: string | number, fieldType: string | number): ChannelAggregateAssetViewResourceName;
662
+ export type ClickViewResourceName = `customers/${StrNum}/clickViews/${StrNum}~${StrNum}`;
663
+ /**
664
+ * @param {string | number} customerId
665
+ * @param {string | number} date
666
+ * @param {string | number} gclid
667
+ * @returns `ClickViewResourceName`
668
+ * @example const clickView: ResourceNames.ClickViewResourceName = ResourceNames.clickView(10987417, 21974834, 43949668)
669
+ */
670
+ export declare function clickView(customerId: string | number, date: string | number, gclid: string | number): ClickViewResourceName;
671
+ export type CombinedAudienceResourceName = `customers/${StrNum}/combinedAudiences/${StrNum}`;
672
+ /**
673
+ * @param {string | number} customerId
674
+ * @param {string | number} combinedAudienceId
675
+ * @returns `CombinedAudienceResourceName`
676
+ * @example const combinedAudience: ResourceNames.CombinedAudienceResourceName = ResourceNames.combinedAudience(10987417, 21974834)
677
+ */
678
+ export declare function combinedAudience(customerId: string | number, combinedAudienceId: string | number): CombinedAudienceResourceName;
679
+ export type ContentCriterionViewResourceName = `customers/${StrNum}/contentCriterionViews/${StrNum}~${StrNum}`;
680
+ /**
681
+ * @param {string | number} customerId
682
+ * @param {string | number} adGroupId
683
+ * @param {string | number} criterionId
684
+ * @returns `ContentCriterionViewResourceName`
685
+ * @example const contentCriterionView: ResourceNames.ContentCriterionViewResourceName = ResourceNames.contentCriterionView(10987417, 21974834, 43949668)
686
+ */
687
+ export declare function contentCriterionView(customerId: string | number, adGroupId: string | number, criterionId: string | number): ContentCriterionViewResourceName;
688
+ export type ConversionActionResourceName = `customers/${StrNum}/conversionActions/${StrNum}`;
689
+ /**
690
+ * @param {string | number} customerId
691
+ * @param {string | number} conversionActionId
692
+ * @returns `ConversionActionResourceName`
693
+ * @example const conversionAction: ResourceNames.ConversionActionResourceName = ResourceNames.conversionAction(10987417, 21974834)
694
+ */
695
+ export declare function conversionAction(customerId: string | number, conversionActionId: string | number): ConversionActionResourceName;
696
+ export type ConversionCustomVariableResourceName = `customers/${StrNum}/conversionCustomVariables/${StrNum}`;
697
+ /**
698
+ * @param {string | number} customerId
699
+ * @param {string | number} conversionCustomVariableId
700
+ * @returns `ConversionCustomVariableResourceName`
701
+ * @example const conversionCustomVariable: ResourceNames.ConversionCustomVariableResourceName = ResourceNames.conversionCustomVariable(10987417, 21974834)
702
+ */
703
+ export declare function conversionCustomVariable(customerId: string | number, conversionCustomVariableId: string | number): ConversionCustomVariableResourceName;
704
+ export type ConversionGoalCampaignConfigResourceName = `customers/${StrNum}/conversionGoalCampaignConfigs/${StrNum}`;
705
+ /**
706
+ * @param {string | number} customerId
707
+ * @param {string | number} campaignId
708
+ * @returns `ConversionGoalCampaignConfigResourceName`
709
+ * @example const conversionGoalCampaignConfig: ResourceNames.ConversionGoalCampaignConfigResourceName = ResourceNames.conversionGoalCampaignConfig(10987417, 21974834)
710
+ */
711
+ export declare function conversionGoalCampaignConfig(customerId: string | number, campaignId: string | number): ConversionGoalCampaignConfigResourceName;
712
+ export type ConversionValueRuleResourceName = `customers/${StrNum}/conversionValueRules/${StrNum}`;
713
+ /**
714
+ * @param {string | number} customerId
715
+ * @param {string | number} conversionValueRuleId
716
+ * @returns `ConversionValueRuleResourceName`
717
+ * @example const conversionValueRule: ResourceNames.ConversionValueRuleResourceName = ResourceNames.conversionValueRule(10987417, 21974834)
718
+ */
719
+ export declare function conversionValueRule(customerId: string | number, conversionValueRuleId: string | number): ConversionValueRuleResourceName;
720
+ export type ConversionValueRuleSetResourceName = `customers/${StrNum}/conversionValueRuleSets/${StrNum}`;
721
+ /**
722
+ * @param {string | number} customerId
723
+ * @param {string | number} conversionValueRuleSetId
724
+ * @returns `ConversionValueRuleSetResourceName`
725
+ * @example const conversionValueRuleSet: ResourceNames.ConversionValueRuleSetResourceName = ResourceNames.conversionValueRuleSet(10987417, 21974834)
726
+ */
727
+ export declare function conversionValueRuleSet(customerId: string | number, conversionValueRuleSetId: string | number): ConversionValueRuleSetResourceName;
728
+ export type CurrencyConstantResourceName = `currencyConstants/${StrNum}`;
729
+ /**
730
+ * @param {string | number} code
731
+ * @returns `CurrencyConstantResourceName`
732
+ * @example const currencyConstant: ResourceNames.CurrencyConstantResourceName = ResourceNames.currencyConstant(10987417)
733
+ */
734
+ export declare function currencyConstant(code: string | number): CurrencyConstantResourceName;
735
+ export type CustomAudienceResourceName = `customers/${StrNum}/customAudiences/${StrNum}`;
736
+ /**
737
+ * @param {string | number} customerId
738
+ * @param {string | number} customAudienceId
739
+ * @returns `CustomAudienceResourceName`
740
+ * @example const customAudience: ResourceNames.CustomAudienceResourceName = ResourceNames.customAudience(10987417, 21974834)
741
+ */
742
+ export declare function customAudience(customerId: string | number, customAudienceId: string | number): CustomAudienceResourceName;
743
+ export type CustomConversionGoalResourceName = `customers/${StrNum}/customConversionGoals/${StrNum}`;
744
+ /**
745
+ * @param {string | number} customerId
746
+ * @param {string | number} goalId
747
+ * @returns `CustomConversionGoalResourceName`
748
+ * @example const customConversionGoal: ResourceNames.CustomConversionGoalResourceName = ResourceNames.customConversionGoal(10987417, 21974834)
749
+ */
750
+ export declare function customConversionGoal(customerId: string | number, goalId: string | number): CustomConversionGoalResourceName;
751
+ export type CustomInterestResourceName = `customers/${StrNum}/customInterests/${StrNum}`;
752
+ /**
753
+ * @param {string | number} customerId
754
+ * @param {string | number} customInterestId
755
+ * @returns `CustomInterestResourceName`
756
+ * @example const customInterest: ResourceNames.CustomInterestResourceName = ResourceNames.customInterest(10987417, 21974834)
757
+ */
758
+ export declare function customInterest(customerId: string | number, customInterestId: string | number): CustomInterestResourceName;
759
+ export type CustomerResourceName = `customers/${StrNum}`;
760
+ /**
761
+ * @param {string | number} customerId
762
+ * @returns `CustomerResourceName`
763
+ * @example const customer: ResourceNames.CustomerResourceName = ResourceNames.customer(10987417)
764
+ */
765
+ export declare function customer(customerId: string | number): CustomerResourceName;
766
+ export type CustomerAssetResourceName = `customers/${StrNum}/customerAssets/${StrNum}~${StrNum}`;
767
+ /**
768
+ * @param {string | number} customerId
769
+ * @param {string | number} assetId
770
+ * @param {string | number} fieldType
771
+ * @returns `CustomerAssetResourceName`
772
+ * @example const customerAsset: ResourceNames.CustomerAssetResourceName = ResourceNames.customerAsset(10987417, 21974834, 43949668)
773
+ */
774
+ export declare function customerAsset(customerId: string | number, assetId: string | number, fieldType: string | number): CustomerAssetResourceName;
775
+ export type CustomerAssetSetResourceName = `customers/${StrNum}/customerAssetSets/${StrNum}`;
776
+ /**
777
+ * @param {string | number} customerId
778
+ * @param {string | number} assetSetId
779
+ * @returns `CustomerAssetSetResourceName`
780
+ * @example const customerAssetSet: ResourceNames.CustomerAssetSetResourceName = ResourceNames.customerAssetSet(10987417, 21974834)
781
+ */
782
+ export declare function customerAssetSet(customerId: string | number, assetSetId: string | number): CustomerAssetSetResourceName;
783
+ export type CustomerClientResourceName = `customers/${StrNum}/customerClients/${StrNum}`;
784
+ /**
785
+ * @param {string | number} customerId
786
+ * @param {string | number} clientCustomerId
787
+ * @returns `CustomerClientResourceName`
788
+ * @example const customerClient: ResourceNames.CustomerClientResourceName = ResourceNames.customerClient(10987417, 21974834)
789
+ */
790
+ export declare function customerClient(customerId: string | number, clientCustomerId: string | number): CustomerClientResourceName;
791
+ export type CustomerClientLinkResourceName = `customers/${StrNum}/customerClientLinks/${StrNum}~${StrNum}`;
792
+ /**
793
+ * @param {string | number} customerId
794
+ * @param {string | number} clientCustomerId
795
+ * @param {string | number} managerLinkId
796
+ * @returns `CustomerClientLinkResourceName`
797
+ * @example const customerClientLink: ResourceNames.CustomerClientLinkResourceName = ResourceNames.customerClientLink(10987417, 21974834, 43949668)
798
+ */
799
+ export declare function customerClientLink(customerId: string | number, clientCustomerId: string | number, managerLinkId: string | number): CustomerClientLinkResourceName;
800
+ export type CustomerConversionGoalResourceName = `customers/${StrNum}/customerConversionGoals/${StrNum}~${StrNum}`;
801
+ /**
802
+ * @param {string | number} customerId
803
+ * @param {string | number} category
804
+ * @param {string | number} source
805
+ * @returns `CustomerConversionGoalResourceName`
806
+ * @example const customerConversionGoal: ResourceNames.CustomerConversionGoalResourceName = ResourceNames.customerConversionGoal(10987417, 21974834, 43949668)
807
+ */
808
+ export declare function customerConversionGoal(customerId: string | number, category: string | number, source: string | number): CustomerConversionGoalResourceName;
809
+ export type CustomerCustomizerResourceName = `customers/${StrNum}/customerCustomizers/${StrNum}`;
810
+ /**
811
+ * @param {string | number} customerId
812
+ * @param {string | number} customizerAttributeId
813
+ * @returns `CustomerCustomizerResourceName`
814
+ * @example const customerCustomizer: ResourceNames.CustomerCustomizerResourceName = ResourceNames.customerCustomizer(10987417, 21974834)
815
+ */
816
+ export declare function customerCustomizer(customerId: string | number, customizerAttributeId: string | number): CustomerCustomizerResourceName;
817
+ export type CustomerLabelResourceName = `customers/${StrNum}/customerLabels/${StrNum}`;
818
+ /**
819
+ * @param {string | number} customerId
820
+ * @param {string | number} labelId
821
+ * @returns `CustomerLabelResourceName`
822
+ * @example const customerLabel: ResourceNames.CustomerLabelResourceName = ResourceNames.customerLabel(10987417, 21974834)
823
+ */
824
+ export declare function customerLabel(customerId: string | number, labelId: string | number): CustomerLabelResourceName;
825
+ export type CustomerManagerLinkResourceName = `customers/${StrNum}/customerManagerLinks/${StrNum}~${StrNum}`;
826
+ /**
827
+ * @param {string | number} customerId
828
+ * @param {string | number} managerCustomerId
829
+ * @param {string | number} managerLinkId
830
+ * @returns `CustomerManagerLinkResourceName`
831
+ * @example const customerManagerLink: ResourceNames.CustomerManagerLinkResourceName = ResourceNames.customerManagerLink(10987417, 21974834, 43949668)
832
+ */
833
+ export declare function customerManagerLink(customerId: string | number, managerCustomerId: string | number, managerLinkId: string | number): CustomerManagerLinkResourceName;
834
+ export type CustomerNegativeCriterionResourceName = `customers/${StrNum}/customerNegativeCriteria/${StrNum}`;
835
+ /**
836
+ * @param {string | number} customerId
837
+ * @param {string | number} criterionId
838
+ * @returns `CustomerNegativeCriterionResourceName`
839
+ * @example const customerNegativeCriterion: ResourceNames.CustomerNegativeCriterionResourceName = ResourceNames.customerNegativeCriterion(10987417, 21974834)
840
+ */
841
+ export declare function customerNegativeCriterion(customerId: string | number, criterionId: string | number): CustomerNegativeCriterionResourceName;
842
+ export type CustomerSearchTermInsightResourceName = `customers/${StrNum}/customerSearchTermInsights/${StrNum}`;
843
+ /**
844
+ * @param {string | number} customerId
845
+ * @param {string | number} clusterId
846
+ * @returns `CustomerSearchTermInsightResourceName`
847
+ * @example const customerSearchTermInsight: ResourceNames.CustomerSearchTermInsightResourceName = ResourceNames.customerSearchTermInsight(10987417, 21974834)
848
+ */
849
+ export declare function customerSearchTermInsight(customerId: string | number, clusterId: string | number): CustomerSearchTermInsightResourceName;
850
+ export type CustomerSkAdNetworkConversionValueSchemaResourceName = `customers/${StrNum}/customerSkAdNetworkConversionValueSchemas/${StrNum}`;
851
+ /**
852
+ * @param {string | number} customerId
853
+ * @param {string | number} accountLinkId
854
+ * @returns `CustomerSkAdNetworkConversionValueSchemaResourceName`
855
+ * @example const customerSkAdNetworkConversionValueSchema: ResourceNames.CustomerSkAdNetworkConversionValueSchemaResourceName = ResourceNames.customerSkAdNetworkConversionValueSchema(10987417, 21974834)
856
+ */
857
+ export declare function customerSkAdNetworkConversionValueSchema(customerId: string | number, accountLinkId: string | number): CustomerSkAdNetworkConversionValueSchemaResourceName;
858
+ export type CustomerUserAccessResourceName = `customers/${StrNum}/customerUserAccesses/${StrNum}`;
859
+ /**
860
+ * @param {string | number} customerId
861
+ * @param {string | number} userId
862
+ * @returns `CustomerUserAccessResourceName`
863
+ * @example const customerUserAccess: ResourceNames.CustomerUserAccessResourceName = ResourceNames.customerUserAccess(10987417, 21974834)
864
+ */
865
+ export declare function customerUserAccess(customerId: string | number, userId: string | number): CustomerUserAccessResourceName;
866
+ export type CustomerUserAccessInvitationResourceName = `customers/${StrNum}/customerUserAccessInvitations/${StrNum}`;
867
+ /**
868
+ * @param {string | number} customerId
869
+ * @param {string | number} invitationId
870
+ * @returns `CustomerUserAccessInvitationResourceName`
871
+ * @example const customerUserAccessInvitation: ResourceNames.CustomerUserAccessInvitationResourceName = ResourceNames.customerUserAccessInvitation(10987417, 21974834)
872
+ */
873
+ export declare function customerUserAccessInvitation(customerId: string | number, invitationId: string | number): CustomerUserAccessInvitationResourceName;
874
+ export type CustomizerAttributeResourceName = `customers/${StrNum}/customizerAttributes/${StrNum}`;
875
+ /**
876
+ * @param {string | number} customerId
877
+ * @param {string | number} customizerAttributeId
878
+ * @returns `CustomizerAttributeResourceName`
879
+ * @example const customizerAttribute: ResourceNames.CustomizerAttributeResourceName = ResourceNames.customizerAttribute(10987417, 21974834)
880
+ */
881
+ export declare function customizerAttribute(customerId: string | number, customizerAttributeId: string | number): CustomizerAttributeResourceName;
882
+ export type DataLinkResourceName = `customers/${StrNum}/dataLinks/${StrNum}~${StrNum}`;
883
+ /**
884
+ * @param {string | number} customerId
885
+ * @param {string | number} productLinkId
886
+ * @param {string | number} dataLinkId
887
+ * @returns `DataLinkResourceName`
888
+ * @example const dataLink: ResourceNames.DataLinkResourceName = ResourceNames.dataLink(10987417, 21974834, 43949668)
889
+ */
890
+ export declare function dataLink(customerId: string | number, productLinkId: string | number, dataLinkId: string | number): DataLinkResourceName;
891
+ export type DetailContentSuitabilityPlacementViewResourceName = `customers/${StrNum}/detailContentSuitabilityPlacementViews/${StrNum}`;
892
+ /**
893
+ * @param {string | number} customerId
894
+ * @param {string | number} placementFingerprint
895
+ * @returns `DetailContentSuitabilityPlacementViewResourceName`
896
+ * @example const detailContentSuitabilityPlacementView: ResourceNames.DetailContentSuitabilityPlacementViewResourceName = ResourceNames.detailContentSuitabilityPlacementView(10987417, 21974834)
897
+ */
898
+ export declare function detailContentSuitabilityPlacementView(customerId: string | number, placementFingerprint: string | number): DetailContentSuitabilityPlacementViewResourceName;
899
+ export type DetailPlacementViewResourceName = `customers/${StrNum}/detailPlacementViews/${StrNum}~${StrNum}`;
900
+ /**
901
+ * @param {string | number} customerId
902
+ * @param {string | number} adGroupId
903
+ * @param {string | number} base64Placement
904
+ * @returns `DetailPlacementViewResourceName`
905
+ * @example const detailPlacementView: ResourceNames.DetailPlacementViewResourceName = ResourceNames.detailPlacementView(10987417, 21974834, 43949668)
906
+ */
907
+ export declare function detailPlacementView(customerId: string | number, adGroupId: string | number, base64Placement: string | number): DetailPlacementViewResourceName;
908
+ export type DetailedDemographicResourceName = `customers/${StrNum}/detailedDemographics/${StrNum}`;
909
+ /**
910
+ * @param {string | number} customerId
911
+ * @param {string | number} detailedDemographicId
912
+ * @returns `DetailedDemographicResourceName`
913
+ * @example const detailedDemographic: ResourceNames.DetailedDemographicResourceName = ResourceNames.detailedDemographic(10987417, 21974834)
914
+ */
915
+ export declare function detailedDemographic(customerId: string | number, detailedDemographicId: string | number): DetailedDemographicResourceName;
916
+ export type DisplayKeywordViewResourceName = `customers/${StrNum}/displayKeywordViews/${StrNum}~${StrNum}`;
917
+ /**
918
+ * @param {string | number} customerId
919
+ * @param {string | number} adGroupId
920
+ * @param {string | number} criterionId
921
+ * @returns `DisplayKeywordViewResourceName`
922
+ * @example const displayKeywordView: ResourceNames.DisplayKeywordViewResourceName = ResourceNames.displayKeywordView(10987417, 21974834, 43949668)
923
+ */
924
+ export declare function displayKeywordView(customerId: string | number, adGroupId: string | number, criterionId: string | number): DisplayKeywordViewResourceName;
925
+ export type DistanceViewResourceName = `customers/${StrNum}/distanceViews/${StrNum}~${StrNum}`;
926
+ /**
927
+ * @param {string | number} customerId
928
+ * @param {string | number} placeholderChainId
929
+ * @param {string | number} distanceBucket
930
+ * @returns `DistanceViewResourceName`
931
+ * @example const distanceView: ResourceNames.DistanceViewResourceName = ResourceNames.distanceView(10987417, 21974834, 43949668)
932
+ */
933
+ export declare function distanceView(customerId: string | number, placeholderChainId: string | number, distanceBucket: string | number): DistanceViewResourceName;
934
+ export type DomainCategoryResourceName = `customers/${StrNum}/domainCategories/${StrNum}~${StrNum}~${StrNum}`;
935
+ /**
936
+ * @param {string | number} customerId
937
+ * @param {string | number} campaignId
938
+ * @param {string | number} base64Category
939
+ * @param {string | number} languageCode
940
+ * @returns `DomainCategoryResourceName`
941
+ * @example const domainCategory: ResourceNames.DomainCategoryResourceName = ResourceNames.domainCategory(10987417, 21974834, 43949668, 87899336)
942
+ */
943
+ export declare function domainCategory(customerId: string | number, campaignId: string | number, base64Category: string | number, languageCode: string | number): DomainCategoryResourceName;
944
+ export type DynamicSearchAdsSearchTermViewResourceName = `customers/${StrNum}/dynamicSearchAdsSearchTermViews/${StrNum}~${StrNum}~${StrNum}~${StrNum}~${StrNum}`;
945
+ /**
946
+ * @param {string | number} customerId
947
+ * @param {string | number} adGroupId
948
+ * @param {string | number} searchTermFingerprint
949
+ * @param {string | number} headlineFingerprint
950
+ * @param {string | number} landingPageFingerprint
951
+ * @param {string | number} pageUrlFingerprint
952
+ * @returns `DynamicSearchAdsSearchTermViewResourceName`
953
+ * @example const dynamicSearchAdsSearchTermView: ResourceNames.DynamicSearchAdsSearchTermViewResourceName = ResourceNames.dynamicSearchAdsSearchTermView(10987417, 21974834, 43949668, 87899336, 175798672, 351597344)
954
+ */
955
+ export declare function dynamicSearchAdsSearchTermView(customerId: string | number, adGroupId: string | number, searchTermFingerprint: string | number, headlineFingerprint: string | number, landingPageFingerprint: string | number, pageUrlFingerprint: string | number): DynamicSearchAdsSearchTermViewResourceName;
956
+ export type ExpandedLandingPageViewResourceName = `customers/${StrNum}/expandedLandingPageViews/${StrNum}`;
957
+ /**
958
+ * @param {string | number} customerId
959
+ * @param {string | number} expandedFinalUrlFingerprint
960
+ * @returns `ExpandedLandingPageViewResourceName`
961
+ * @example const expandedLandingPageView: ResourceNames.ExpandedLandingPageViewResourceName = ResourceNames.expandedLandingPageView(10987417, 21974834)
962
+ */
963
+ export declare function expandedLandingPageView(customerId: string | number, expandedFinalUrlFingerprint: string | number): ExpandedLandingPageViewResourceName;
964
+ export type ExperimentResourceName = `customers/${StrNum}/experiments/${StrNum}`;
965
+ /**
966
+ * @param {string | number} customerId
967
+ * @param {string | number} trialId
968
+ * @returns `ExperimentResourceName`
969
+ * @example const experiment: ResourceNames.ExperimentResourceName = ResourceNames.experiment(10987417, 21974834)
970
+ */
971
+ export declare function experiment(customerId: string | number, trialId: string | number): ExperimentResourceName;
972
+ export type ExperimentArmResourceName = `customers/${StrNum}/experimentArms/${StrNum}~${StrNum}`;
973
+ /**
974
+ * @param {string | number} customerId
975
+ * @param {string | number} trialId
976
+ * @param {string | number} trialArmId
977
+ * @returns `ExperimentArmResourceName`
978
+ * @example const experimentArm: ResourceNames.ExperimentArmResourceName = ResourceNames.experimentArm(10987417, 21974834, 43949668)
979
+ */
980
+ export declare function experimentArm(customerId: string | number, trialId: string | number, trialArmId: string | number): ExperimentArmResourceName;
981
+ export type FinalUrlExpansionAssetViewResourceName = `customers/${StrNum}/finalUrlExpansionAssetViews/${StrNum}~${StrNum}~${StrNum}~${StrNum}`;
982
+ /**
983
+ * @param {string | number} customerId
984
+ * @param {string | number} campaignId
985
+ * @param {string | number} assetId
986
+ * @param {string | number} fieldType
987
+ * @param {string | number} urlFp
988
+ * @returns `FinalUrlExpansionAssetViewResourceName`
989
+ * @example const finalUrlExpansionAssetView: ResourceNames.FinalUrlExpansionAssetViewResourceName = ResourceNames.finalUrlExpansionAssetView(10987417, 21974834, 43949668, 87899336, 175798672)
990
+ */
991
+ export declare function finalUrlExpansionAssetView(customerId: string | number, campaignId: string | number, assetId: string | number, fieldType: string | number, urlFp: string | number): FinalUrlExpansionAssetViewResourceName;
992
+ export type GenderViewResourceName = `customers/${StrNum}/genderViews/${StrNum}~${StrNum}`;
993
+ /**
994
+ * @param {string | number} customerId
995
+ * @param {string | number} adGroupId
996
+ * @param {string | number} criterionId
997
+ * @returns `GenderViewResourceName`
998
+ * @example const genderView: ResourceNames.GenderViewResourceName = ResourceNames.genderView(10987417, 21974834, 43949668)
999
+ */
1000
+ export declare function genderView(customerId: string | number, adGroupId: string | number, criterionId: string | number): GenderViewResourceName;
1001
+ export type GeoTargetConstantResourceName = `geoTargetConstants/${StrNum}`;
1002
+ /**
1003
+ * @param {string | number} criterionId
1004
+ * @returns `GeoTargetConstantResourceName`
1005
+ * @example const geoTargetConstant: ResourceNames.GeoTargetConstantResourceName = ResourceNames.geoTargetConstant(10987417)
1006
+ */
1007
+ export declare function geoTargetConstant(criterionId: string | number): GeoTargetConstantResourceName;
1008
+ export type GeographicViewResourceName = `customers/${StrNum}/geographicViews/${StrNum}~${StrNum}`;
1009
+ /**
1010
+ * @param {string | number} customerId
1011
+ * @param {string | number} countryCriterionId
1012
+ * @param {string | number} locationType
1013
+ * @returns `GeographicViewResourceName`
1014
+ * @example const geographicView: ResourceNames.GeographicViewResourceName = ResourceNames.geographicView(10987417, 21974834, 43949668)
1015
+ */
1016
+ export declare function geographicView(customerId: string | number, countryCriterionId: string | number, locationType: string | number): GeographicViewResourceName;
1017
+ export type GoalResourceName = `customers/${StrNum}/goals/${StrNum}`;
1018
+ /**
1019
+ * @param {string | number} customerId
1020
+ * @param {string | number} unifiedGoalId
1021
+ * @returns `GoalResourceName`
1022
+ * @example const goal: ResourceNames.GoalResourceName = ResourceNames.goal(10987417, 21974834)
1023
+ */
1024
+ export declare function goal(customerId: string | number, unifiedGoalId: string | number): GoalResourceName;
1025
+ export type GoogleAdsFieldResourceName = `googleAdsFields/${StrNum}`;
1026
+ /**
1027
+ * @param {string | number} googleAdsField
1028
+ * @returns `GoogleAdsFieldResourceName`
1029
+ * @example const googleAdsField: ResourceNames.GoogleAdsFieldResourceName = ResourceNames.googleAdsField(10987417)
1030
+ */
1031
+ export declare function googleAdsField(googleAdsField: string | number): GoogleAdsFieldResourceName;
1032
+ export type GroupContentSuitabilityPlacementViewResourceName = `customers/${StrNum}/groupContentSuitabilityPlacementViews/${StrNum}`;
1033
+ /**
1034
+ * @param {string | number} customerId
1035
+ * @param {string | number} placementFingerprint
1036
+ * @returns `GroupContentSuitabilityPlacementViewResourceName`
1037
+ * @example const groupContentSuitabilityPlacementView: ResourceNames.GroupContentSuitabilityPlacementViewResourceName = ResourceNames.groupContentSuitabilityPlacementView(10987417, 21974834)
1038
+ */
1039
+ export declare function groupContentSuitabilityPlacementView(customerId: string | number, placementFingerprint: string | number): GroupContentSuitabilityPlacementViewResourceName;
1040
+ export type GroupPlacementViewResourceName = `customers/${StrNum}/groupPlacementViews/${StrNum}~${StrNum}`;
1041
+ /**
1042
+ * @param {string | number} customerId
1043
+ * @param {string | number} adGroupId
1044
+ * @param {string | number} base64Placement
1045
+ * @returns `GroupPlacementViewResourceName`
1046
+ * @example const groupPlacementView: ResourceNames.GroupPlacementViewResourceName = ResourceNames.groupPlacementView(10987417, 21974834, 43949668)
1047
+ */
1048
+ export declare function groupPlacementView(customerId: string | number, adGroupId: string | number, base64Placement: string | number): GroupPlacementViewResourceName;
1049
+ export type HotelGroupViewResourceName = `customers/${StrNum}/hotelGroupViews/${StrNum}~${StrNum}`;
1050
+ /**
1051
+ * @param {string | number} customerId
1052
+ * @param {string | number} adGroupId
1053
+ * @param {string | number} criterionId
1054
+ * @returns `HotelGroupViewResourceName`
1055
+ * @example const hotelGroupView: ResourceNames.HotelGroupViewResourceName = ResourceNames.hotelGroupView(10987417, 21974834, 43949668)
1056
+ */
1057
+ export declare function hotelGroupView(customerId: string | number, adGroupId: string | number, criterionId: string | number): HotelGroupViewResourceName;
1058
+ export type HotelPerformanceViewResourceName = `customers/${StrNum}/hotelPerformanceView`;
1059
+ /**
1060
+ * @param {string | number} customerId
1061
+ * @returns `HotelPerformanceViewResourceName`
1062
+ * @example const hotelPerformanceView: ResourceNames.HotelPerformanceViewResourceName = ResourceNames.hotelPerformanceView(10987417)
1063
+ */
1064
+ export declare function hotelPerformanceView(customerId: string | number): HotelPerformanceViewResourceName;
1065
+ export type HotelReconciliationResourceName = `customers/${StrNum}/hotelReconciliations/${StrNum}`;
1066
+ /**
1067
+ * @param {string | number} customerId
1068
+ * @param {string | number} commissionId
1069
+ * @returns `HotelReconciliationResourceName`
1070
+ * @example const hotelReconciliation: ResourceNames.HotelReconciliationResourceName = ResourceNames.hotelReconciliation(10987417, 21974834)
1071
+ */
1072
+ export declare function hotelReconciliation(customerId: string | number, commissionId: string | number): HotelReconciliationResourceName;
1073
+ export type IncomeRangeViewResourceName = `customers/${StrNum}/incomeRangeViews/${StrNum}~${StrNum}`;
1074
+ /**
1075
+ * @param {string | number} customerId
1076
+ * @param {string | number} adGroupId
1077
+ * @param {string | number} criterionId
1078
+ * @returns `IncomeRangeViewResourceName`
1079
+ * @example const incomeRangeView: ResourceNames.IncomeRangeViewResourceName = ResourceNames.incomeRangeView(10987417, 21974834, 43949668)
1080
+ */
1081
+ export declare function incomeRangeView(customerId: string | number, adGroupId: string | number, criterionId: string | number): IncomeRangeViewResourceName;
1082
+ export type InvoiceResourceName = `customers/${StrNum}/invoices/${StrNum}`;
1083
+ /**
1084
+ * @param {string | number} customerId
1085
+ * @param {string | number} invoiceId
1086
+ * @returns `InvoiceResourceName`
1087
+ * @example const invoice: ResourceNames.InvoiceResourceName = ResourceNames.invoice(10987417, 21974834)
1088
+ */
1089
+ export declare function invoice(customerId: string | number, invoiceId: string | number): InvoiceResourceName;
1090
+ export type KeywordPlanResourceName = `customers/${StrNum}/keywordPlans/${StrNum}`;
1091
+ /**
1092
+ * @param {string | number} customerId
1093
+ * @param {string | number} keywordPlanId
1094
+ * @returns `KeywordPlanResourceName`
1095
+ * @example const keywordPlan: ResourceNames.KeywordPlanResourceName = ResourceNames.keywordPlan(10987417, 21974834)
1096
+ */
1097
+ export declare function keywordPlan(customerId: string | number, keywordPlanId: string | number): KeywordPlanResourceName;
1098
+ export type KeywordPlanAdGroupResourceName = `customers/${StrNum}/keywordPlanAdGroups/${StrNum}`;
1099
+ /**
1100
+ * @param {string | number} customerId
1101
+ * @param {string | number} keywordPlanAdGroupId
1102
+ * @returns `KeywordPlanAdGroupResourceName`
1103
+ * @example const keywordPlanAdGroup: ResourceNames.KeywordPlanAdGroupResourceName = ResourceNames.keywordPlanAdGroup(10987417, 21974834)
1104
+ */
1105
+ export declare function keywordPlanAdGroup(customerId: string | number, keywordPlanAdGroupId: string | number): KeywordPlanAdGroupResourceName;
1106
+ export type KeywordPlanAdGroupKeywordResourceName = `customers/${StrNum}/keywordPlanAdGroupKeywords/${StrNum}`;
1107
+ /**
1108
+ * @param {string | number} customerId
1109
+ * @param {string | number} keywordPlanAdGroupKeywordId
1110
+ * @returns `KeywordPlanAdGroupKeywordResourceName`
1111
+ * @example const keywordPlanAdGroupKeyword: ResourceNames.KeywordPlanAdGroupKeywordResourceName = ResourceNames.keywordPlanAdGroupKeyword(10987417, 21974834)
1112
+ */
1113
+ export declare function keywordPlanAdGroupKeyword(customerId: string | number, keywordPlanAdGroupKeywordId: string | number): KeywordPlanAdGroupKeywordResourceName;
1114
+ export type KeywordPlanCampaignResourceName = `customers/${StrNum}/keywordPlanCampaigns/${StrNum}`;
1115
+ /**
1116
+ * @param {string | number} customerId
1117
+ * @param {string | number} keywordPlanCampaignId
1118
+ * @returns `KeywordPlanCampaignResourceName`
1119
+ * @example const keywordPlanCampaign: ResourceNames.KeywordPlanCampaignResourceName = ResourceNames.keywordPlanCampaign(10987417, 21974834)
1120
+ */
1121
+ export declare function keywordPlanCampaign(customerId: string | number, keywordPlanCampaignId: string | number): KeywordPlanCampaignResourceName;
1122
+ export type KeywordPlanCampaignKeywordResourceName = `customers/${StrNum}/keywordPlanCampaignKeywords/${StrNum}`;
1123
+ /**
1124
+ * @param {string | number} customerId
1125
+ * @param {string | number} keywordPlanCampaignKeywordId
1126
+ * @returns `KeywordPlanCampaignKeywordResourceName`
1127
+ * @example const keywordPlanCampaignKeyword: ResourceNames.KeywordPlanCampaignKeywordResourceName = ResourceNames.keywordPlanCampaignKeyword(10987417, 21974834)
1128
+ */
1129
+ export declare function keywordPlanCampaignKeyword(customerId: string | number, keywordPlanCampaignKeywordId: string | number): KeywordPlanCampaignKeywordResourceName;
1130
+ export type KeywordThemeConstantResourceName = `keywordThemeConstants/${StrNum}~${StrNum}`;
1131
+ /**
1132
+ * @param {string | number} expressCategoryId
1133
+ * @param {string | number} expressSubCategoryId
1134
+ * @returns `KeywordThemeConstantResourceName`
1135
+ * @example const keywordThemeConstant: ResourceNames.KeywordThemeConstantResourceName = ResourceNames.keywordThemeConstant(10987417, 21974834)
1136
+ */
1137
+ export declare function keywordThemeConstant(expressCategoryId: string | number, expressSubCategoryId: string | number): KeywordThemeConstantResourceName;
1138
+ export type KeywordViewResourceName = `customers/${StrNum}/keywordViews/${StrNum}~${StrNum}`;
1139
+ /**
1140
+ * @param {string | number} customerId
1141
+ * @param {string | number} adGroupId
1142
+ * @param {string | number} criterionId
1143
+ * @returns `KeywordViewResourceName`
1144
+ * @example const keywordView: ResourceNames.KeywordViewResourceName = ResourceNames.keywordView(10987417, 21974834, 43949668)
1145
+ */
1146
+ export declare function keywordView(customerId: string | number, adGroupId: string | number, criterionId: string | number): KeywordViewResourceName;
1147
+ export type LabelResourceName = `customers/${StrNum}/labels/${StrNum}`;
1148
+ /**
1149
+ * @param {string | number} customerId
1150
+ * @param {string | number} labelId
1151
+ * @returns `LabelResourceName`
1152
+ * @example const label: ResourceNames.LabelResourceName = ResourceNames.label(10987417, 21974834)
1153
+ */
1154
+ export declare function label(customerId: string | number, labelId: string | number): LabelResourceName;
1155
+ export type LandingPageViewResourceName = `customers/${StrNum}/landingPageViews/${StrNum}`;
1156
+ /**
1157
+ * @param {string | number} customerId
1158
+ * @param {string | number} unexpandedFinalUrlFingerprint
1159
+ * @returns `LandingPageViewResourceName`
1160
+ * @example const landingPageView: ResourceNames.LandingPageViewResourceName = ResourceNames.landingPageView(10987417, 21974834)
1161
+ */
1162
+ export declare function landingPageView(customerId: string | number, unexpandedFinalUrlFingerprint: string | number): LandingPageViewResourceName;
1163
+ export type LanguageConstantResourceName = `languageConstants/${StrNum}`;
1164
+ /**
1165
+ * @param {string | number} criterionId
1166
+ * @returns `LanguageConstantResourceName`
1167
+ * @example const languageConstant: ResourceNames.LanguageConstantResourceName = ResourceNames.languageConstant(10987417)
1168
+ */
1169
+ export declare function languageConstant(criterionId: string | number): LanguageConstantResourceName;
1170
+ export type LeadFormSubmissionDataResourceName = `customers/${StrNum}/leadFormSubmissionData/${StrNum}`;
1171
+ /**
1172
+ * @param {string | number} customerId
1173
+ * @param {string | number} leadFormUserSubmissionId
1174
+ * @returns `LeadFormSubmissionDataResourceName`
1175
+ * @example const leadFormSubmissionData: ResourceNames.LeadFormSubmissionDataResourceName = ResourceNames.leadFormSubmissionData(10987417, 21974834)
1176
+ */
1177
+ export declare function leadFormSubmissionData(customerId: string | number, leadFormUserSubmissionId: string | number): LeadFormSubmissionDataResourceName;
1178
+ export type LifeEventResourceName = `customers/${StrNum}/lifeEvents/${StrNum}`;
1179
+ /**
1180
+ * @param {string | number} customerId
1181
+ * @param {string | number} lifeEventId
1182
+ * @returns `LifeEventResourceName`
1183
+ * @example const lifeEvent: ResourceNames.LifeEventResourceName = ResourceNames.lifeEvent(10987417, 21974834)
1184
+ */
1185
+ export declare function lifeEvent(customerId: string | number, lifeEventId: string | number): LifeEventResourceName;
1186
+ export type LiftMeasurementAgeRangeResourceName = `customers/${StrNum}/liftMeasurementAgeRanges/${StrNum}~${StrNum}~${StrNum}`;
1187
+ /**
1188
+ * @param {string | number} customerId
1189
+ * @param {string | number} liftMeasurementConfigurationId
1190
+ * @param {string | number} campaignId
1191
+ * @param {string | number} criterionId
1192
+ * @returns `LiftMeasurementAgeRangeResourceName`
1193
+ * @example const liftMeasurementAgeRange: ResourceNames.LiftMeasurementAgeRangeResourceName = ResourceNames.liftMeasurementAgeRange(10987417, 21974834, 43949668, 87899336)
1194
+ */
1195
+ export declare function liftMeasurementAgeRange(customerId: string | number, liftMeasurementConfigurationId: string | number, campaignId: string | number, criterionId: string | number): LiftMeasurementAgeRangeResourceName;
1196
+ export type LiftMeasurementCampaignResourceName = `customers/${StrNum}/liftMeasurementCampaigns/${StrNum}~${StrNum}`;
1197
+ /**
1198
+ * @param {string | number} customerId
1199
+ * @param {string | number} liftMeasurementConfigurationId
1200
+ * @param {string | number} campaignId
1201
+ * @returns `LiftMeasurementCampaignResourceName`
1202
+ * @example const liftMeasurementCampaign: ResourceNames.LiftMeasurementCampaignResourceName = ResourceNames.liftMeasurementCampaign(10987417, 21974834, 43949668)
1203
+ */
1204
+ export declare function liftMeasurementCampaign(customerId: string | number, liftMeasurementConfigurationId: string | number, campaignId: string | number): LiftMeasurementCampaignResourceName;
1205
+ export type LiftMeasurementConfigResourceName = `customers/${StrNum}/liftMeasurementConfigs/${StrNum}`;
1206
+ /**
1207
+ * @param {string | number} customerId
1208
+ * @param {string | number} liftMeasurementConfigurationId
1209
+ * @returns `LiftMeasurementConfigResourceName`
1210
+ * @example const liftMeasurementConfig: ResourceNames.LiftMeasurementConfigResourceName = ResourceNames.liftMeasurementConfig(10987417, 21974834)
1211
+ */
1212
+ export declare function liftMeasurementConfig(customerId: string | number, liftMeasurementConfigurationId: string | number): LiftMeasurementConfigResourceName;
1213
+ export type LiftMeasurementDeviceResourceName = `customers/${StrNum}/liftMeasurementDevices/${StrNum}~${StrNum}~${StrNum}`;
1214
+ /**
1215
+ * @param {string | number} customerId
1216
+ * @param {string | number} liftMeasurementConfigurationId
1217
+ * @param {string | number} campaignId
1218
+ * @param {string | number} criterionId
1219
+ * @returns `LiftMeasurementDeviceResourceName`
1220
+ * @example const liftMeasurementDevice: ResourceNames.LiftMeasurementDeviceResourceName = ResourceNames.liftMeasurementDevice(10987417, 21974834, 43949668, 87899336)
1221
+ */
1222
+ export declare function liftMeasurementDevice(customerId: string | number, liftMeasurementConfigurationId: string | number, campaignId: string | number, criterionId: string | number): LiftMeasurementDeviceResourceName;
1223
+ export type LiftMeasurementFlightResourceName = `customers/${StrNum}/liftMeasurementFlights/${StrNum}~${StrNum}`;
1224
+ /**
1225
+ * @param {string | number} customerId
1226
+ * @param {string | number} liftMeasurementConfigurationId
1227
+ * @param {string | number} liftMeasurementFlightId
1228
+ * @returns `LiftMeasurementFlightResourceName`
1229
+ * @example const liftMeasurementFlight: ResourceNames.LiftMeasurementFlightResourceName = ResourceNames.liftMeasurementFlight(10987417, 21974834, 43949668)
1230
+ */
1231
+ export declare function liftMeasurementFlight(customerId: string | number, liftMeasurementConfigurationId: string | number, liftMeasurementFlightId: string | number): LiftMeasurementFlightResourceName;
1232
+ export type LiftMeasurementGenderResourceName = `customers/${StrNum}/liftMeasurementGenders/${StrNum}~${StrNum}~${StrNum}`;
1233
+ /**
1234
+ * @param {string | number} customerId
1235
+ * @param {string | number} liftMeasurementConfigurationId
1236
+ * @param {string | number} campaignId
1237
+ * @param {string | number} criterionId
1238
+ * @returns `LiftMeasurementGenderResourceName`
1239
+ * @example const liftMeasurementGender: ResourceNames.LiftMeasurementGenderResourceName = ResourceNames.liftMeasurementGender(10987417, 21974834, 43949668, 87899336)
1240
+ */
1241
+ export declare function liftMeasurementGender(customerId: string | number, liftMeasurementConfigurationId: string | number, campaignId: string | number, criterionId: string | number): LiftMeasurementGenderResourceName;
1242
+ export type LiftMeasurementVideoResourceName = `customers/${StrNum}/liftMeasurementVideos/${StrNum}~${StrNum}~${StrNum}`;
1243
+ /**
1244
+ * @param {string | number} customerId
1245
+ * @param {string | number} liftMeasurementConfigurationId
1246
+ * @param {string | number} campaignId
1247
+ * @param {string | number} externalVideoId
1248
+ * @returns `LiftMeasurementVideoResourceName`
1249
+ * @example const liftMeasurementVideo: ResourceNames.LiftMeasurementVideoResourceName = ResourceNames.liftMeasurementVideo(10987417, 21974834, 43949668, 87899336)
1250
+ */
1251
+ export declare function liftMeasurementVideo(customerId: string | number, liftMeasurementConfigurationId: string | number, campaignId: string | number, externalVideoId: string | number): LiftMeasurementVideoResourceName;
1252
+ export type LocalServicesEmployeeResourceName = `customers/${StrNum}/localServicesEmployees/${StrNum}`;
1253
+ /**
1254
+ * @param {string | number} customerId
1255
+ * @param {string | number} glsEmployeeId
1256
+ * @returns `LocalServicesEmployeeResourceName`
1257
+ * @example const localServicesEmployee: ResourceNames.LocalServicesEmployeeResourceName = ResourceNames.localServicesEmployee(10987417, 21974834)
1258
+ */
1259
+ export declare function localServicesEmployee(customerId: string | number, glsEmployeeId: string | number): LocalServicesEmployeeResourceName;
1260
+ export type LocalServicesLeadResourceName = `customers/${StrNum}/localServicesLeads/${StrNum}`;
1261
+ /**
1262
+ * @param {string | number} customerId
1263
+ * @param {string | number} localServicesLeadId
1264
+ * @returns `LocalServicesLeadResourceName`
1265
+ * @example const localServicesLead: ResourceNames.LocalServicesLeadResourceName = ResourceNames.localServicesLead(10987417, 21974834)
1266
+ */
1267
+ export declare function localServicesLead(customerId: string | number, localServicesLeadId: string | number): LocalServicesLeadResourceName;
1268
+ export type LocalServicesLeadConversationResourceName = `customers/${StrNum}/localServicesLeadConversations/${StrNum}`;
1269
+ /**
1270
+ * @param {string | number} customerId
1271
+ * @param {string | number} localServicesLeadConversationId
1272
+ * @returns `LocalServicesLeadConversationResourceName`
1273
+ * @example const localServicesLeadConversation: ResourceNames.LocalServicesLeadConversationResourceName = ResourceNames.localServicesLeadConversation(10987417, 21974834)
1274
+ */
1275
+ export declare function localServicesLeadConversation(customerId: string | number, localServicesLeadConversationId: string | number): LocalServicesLeadConversationResourceName;
1276
+ export type LocalServicesVerificationArtifactResourceName = `customers/${StrNum}/localServicesVerificationArtifacts/${StrNum}`;
1277
+ /**
1278
+ * @param {string | number} customerId
1279
+ * @param {string | number} glsVerificationArtifactId
1280
+ * @returns `LocalServicesVerificationArtifactResourceName`
1281
+ * @example const localServicesVerificationArtifact: ResourceNames.LocalServicesVerificationArtifactResourceName = ResourceNames.localServicesVerificationArtifact(10987417, 21974834)
1282
+ */
1283
+ export declare function localServicesVerificationArtifact(customerId: string | number, glsVerificationArtifactId: string | number): LocalServicesVerificationArtifactResourceName;
1284
+ export type LocationInterestViewResourceName = `customers/${StrNum}/locationInterestViews/${StrNum}~${StrNum}~${StrNum}`;
1285
+ /**
1286
+ * @param {string | number} customerId
1287
+ * @param {string | number} campaignId
1288
+ * @param {string | number} adGroupId
1289
+ * @param {string | number} criterionId
1290
+ * @returns `LocationInterestViewResourceName`
1291
+ * @example const locationInterestView: ResourceNames.LocationInterestViewResourceName = ResourceNames.locationInterestView(10987417, 21974834, 43949668, 87899336)
1292
+ */
1293
+ export declare function locationInterestView(customerId: string | number, campaignId: string | number, adGroupId: string | number, criterionId: string | number): LocationInterestViewResourceName;
1294
+ export type LocationViewResourceName = `customers/${StrNum}/locationViews/${StrNum}~${StrNum}`;
1295
+ /**
1296
+ * @param {string | number} customerId
1297
+ * @param {string | number} campaignId
1298
+ * @param {string | number} criterionId
1299
+ * @returns `LocationViewResourceName`
1300
+ * @example const locationView: ResourceNames.LocationViewResourceName = ResourceNames.locationView(10987417, 21974834, 43949668)
1301
+ */
1302
+ export declare function locationView(customerId: string | number, campaignId: string | number, criterionId: string | number): LocationViewResourceName;
1303
+ export type ManagedPlacementViewResourceName = `customers/${StrNum}/managedPlacementViews/${StrNum}~${StrNum}`;
1304
+ /**
1305
+ * @param {string | number} customerId
1306
+ * @param {string | number} adGroupId
1307
+ * @param {string | number} criterionId
1308
+ * @returns `ManagedPlacementViewResourceName`
1309
+ * @example const managedPlacementView: ResourceNames.ManagedPlacementViewResourceName = ResourceNames.managedPlacementView(10987417, 21974834, 43949668)
1310
+ */
1311
+ export declare function managedPlacementView(customerId: string | number, adGroupId: string | number, criterionId: string | number): ManagedPlacementViewResourceName;
1312
+ export type MatchedLocationInterestViewResourceName = `customers/${StrNum}/matchedLocationInterestViews/${StrNum}`;
1313
+ /**
1314
+ * @param {string | number} customerId
1315
+ * @param {string | number} countryCriterionId
1316
+ * @returns `MatchedLocationInterestViewResourceName`
1317
+ * @example const matchedLocationInterestView: ResourceNames.MatchedLocationInterestViewResourceName = ResourceNames.matchedLocationInterestView(10987417, 21974834)
1318
+ */
1319
+ export declare function matchedLocationInterestView(customerId: string | number, countryCriterionId: string | number): MatchedLocationInterestViewResourceName;
1320
+ export type MediaFileResourceName = `customers/${StrNum}/mediaFiles/${StrNum}`;
1321
+ /**
1322
+ * @param {string | number} customerId
1323
+ * @param {string | number} mediaFileId
1324
+ * @returns `MediaFileResourceName`
1325
+ * @example const mediaFile: ResourceNames.MediaFileResourceName = ResourceNames.mediaFile(10987417, 21974834)
1326
+ */
1327
+ export declare function mediaFile(customerId: string | number, mediaFileId: string | number): MediaFileResourceName;
1328
+ export type MobileAppCategoryConstantResourceName = `mobileAppCategoryConstants/${StrNum}`;
1329
+ /**
1330
+ * @param {string | number} mobileAppCategoryId
1331
+ * @returns `MobileAppCategoryConstantResourceName`
1332
+ * @example const mobileAppCategoryConstant: ResourceNames.MobileAppCategoryConstantResourceName = ResourceNames.mobileAppCategoryConstant(10987417)
1333
+ */
1334
+ export declare function mobileAppCategoryConstant(mobileAppCategoryId: string | number): MobileAppCategoryConstantResourceName;
1335
+ export type MobileDeviceConstantResourceName = `mobileDeviceConstants/${StrNum}`;
1336
+ /**
1337
+ * @param {string | number} criterionId
1338
+ * @returns `MobileDeviceConstantResourceName`
1339
+ * @example const mobileDeviceConstant: ResourceNames.MobileDeviceConstantResourceName = ResourceNames.mobileDeviceConstant(10987417)
1340
+ */
1341
+ export declare function mobileDeviceConstant(criterionId: string | number): MobileDeviceConstantResourceName;
1342
+ export type MultiPartyAuthReviewResourceName = `customers/${StrNum}/multiPartyAuthReviews/${StrNum}`;
1343
+ /**
1344
+ * @param {string | number} customerId
1345
+ * @param {string | number} customerInvitationId
1346
+ * @returns `MultiPartyAuthReviewResourceName`
1347
+ * @example const multiPartyAuthReview: ResourceNames.MultiPartyAuthReviewResourceName = ResourceNames.multiPartyAuthReview(10987417, 21974834)
1348
+ */
1349
+ export declare function multiPartyAuthReview(customerId: string | number, customerInvitationId: string | number): MultiPartyAuthReviewResourceName;
1350
+ export type OfflineConversionUploadClientSummaryResourceName = `customers/${StrNum}/offlineConversionUploadClientSummaries/${StrNum}`;
1351
+ /**
1352
+ * @param {string | number} customerId
1353
+ * @param {string | number} client
1354
+ * @returns `OfflineConversionUploadClientSummaryResourceName`
1355
+ * @example const offlineConversionUploadClientSummary: ResourceNames.OfflineConversionUploadClientSummaryResourceName = ResourceNames.offlineConversionUploadClientSummary(10987417, 21974834)
1356
+ */
1357
+ export declare function offlineConversionUploadClientSummary(customerId: string | number, client: string | number): OfflineConversionUploadClientSummaryResourceName;
1358
+ export type OfflineConversionUploadConversionActionSummaryResourceName = `customers/${StrNum}/offlineConversionUploadConversionActionSummaries/${StrNum}~${StrNum}`;
1359
+ /**
1360
+ * @param {string | number} customerId
1361
+ * @param {string | number} conversionTypeId
1362
+ * @param {string | number} client
1363
+ * @returns `OfflineConversionUploadConversionActionSummaryResourceName`
1364
+ * @example const offlineConversionUploadConversionActionSummary: ResourceNames.OfflineConversionUploadConversionActionSummaryResourceName = ResourceNames.offlineConversionUploadConversionActionSummary(10987417, 21974834, 43949668)
1365
+ */
1366
+ export declare function offlineConversionUploadConversionActionSummary(customerId: string | number, conversionTypeId: string | number, client: string | number): OfflineConversionUploadConversionActionSummaryResourceName;
1367
+ export type OfflineUserDataJobResourceName = `customers/${StrNum}/offlineUserDataJobs/${StrNum}`;
1368
+ /**
1369
+ * @param {string | number} customerId
1370
+ * @param {string | number} offlineUserDataUpdateId
1371
+ * @returns `OfflineUserDataJobResourceName`
1372
+ * @example const offlineUserDataJob: ResourceNames.OfflineUserDataJobResourceName = ResourceNames.offlineUserDataJob(10987417, 21974834)
1373
+ */
1374
+ export declare function offlineUserDataJob(customerId: string | number, offlineUserDataUpdateId: string | number): OfflineUserDataJobResourceName;
1375
+ export type OperatingSystemVersionConstantResourceName = `operatingSystemVersionConstants/${StrNum}`;
1376
+ /**
1377
+ * @param {string | number} criterionId
1378
+ * @returns `OperatingSystemVersionConstantResourceName`
1379
+ * @example const operatingSystemVersionConstant: ResourceNames.OperatingSystemVersionConstantResourceName = ResourceNames.operatingSystemVersionConstant(10987417)
1380
+ */
1381
+ export declare function operatingSystemVersionConstant(criterionId: string | number): OperatingSystemVersionConstantResourceName;
1382
+ export type PaidOrganicSearchTermViewResourceName = `customers/${StrNum}/paidOrganicSearchTermViews/${StrNum}~${StrNum}~${StrNum}`;
1383
+ /**
1384
+ * @param {string | number} customerId
1385
+ * @param {string | number} campaignId
1386
+ * @param {string | number} adGroupId
1387
+ * @param {string | number} base64SearchTerm
1388
+ * @returns `PaidOrganicSearchTermViewResourceName`
1389
+ * @example const paidOrganicSearchTermView: ResourceNames.PaidOrganicSearchTermViewResourceName = ResourceNames.paidOrganicSearchTermView(10987417, 21974834, 43949668, 87899336)
1390
+ */
1391
+ export declare function paidOrganicSearchTermView(customerId: string | number, campaignId: string | number, adGroupId: string | number, base64SearchTerm: string | number): PaidOrganicSearchTermViewResourceName;
1392
+ export type ParentalStatusViewResourceName = `customers/${StrNum}/parentalStatusViews/${StrNum}~${StrNum}`;
1393
+ /**
1394
+ * @param {string | number} customerId
1395
+ * @param {string | number} adGroupId
1396
+ * @param {string | number} criterionId
1397
+ * @returns `ParentalStatusViewResourceName`
1398
+ * @example const parentalStatusView: ResourceNames.ParentalStatusViewResourceName = ResourceNames.parentalStatusView(10987417, 21974834, 43949668)
1399
+ */
1400
+ export declare function parentalStatusView(customerId: string | number, adGroupId: string | number, criterionId: string | number): ParentalStatusViewResourceName;
1401
+ export type PaymentsAccountResourceName = `customers/${StrNum}/paymentsAccounts/${StrNum}`;
1402
+ /**
1403
+ * @param {string | number} customerId
1404
+ * @param {string | number} paymentsAccountId
1405
+ * @returns `PaymentsAccountResourceName`
1406
+ * @example const paymentsAccount: ResourceNames.PaymentsAccountResourceName = ResourceNames.paymentsAccount(10987417, 21974834)
1407
+ */
1408
+ export declare function paymentsAccount(customerId: string | number, paymentsAccountId: string | number): PaymentsAccountResourceName;
1409
+ export type PerStoreViewResourceName = `customers/${StrNum}/perStoreViews/${StrNum}`;
1410
+ /**
1411
+ * @param {string | number} customerId
1412
+ * @param {string | number} placeId
1413
+ * @returns `PerStoreViewResourceName`
1414
+ * @example const perStoreView: ResourceNames.PerStoreViewResourceName = ResourceNames.perStoreView(10987417, 21974834)
1415
+ */
1416
+ export declare function perStoreView(customerId: string | number, placeId: string | number): PerStoreViewResourceName;
1417
+ export type PerformanceMaxPlacementViewResourceName = `customers/${StrNum}/performanceMaxPlacementViews/${StrNum}`;
1418
+ /**
1419
+ * @param {string | number} customerId
1420
+ * @param {string | number} base_64Placement
1421
+ * @returns `PerformanceMaxPlacementViewResourceName`
1422
+ * @example const performanceMaxPlacementView: ResourceNames.PerformanceMaxPlacementViewResourceName = ResourceNames.performanceMaxPlacementView(10987417, 21974834)
1423
+ */
1424
+ export declare function performanceMaxPlacementView(customerId: string | number, base_64Placement: string | number): PerformanceMaxPlacementViewResourceName;
1425
+ export type ProductCategoryConstantResourceName = `productCategoryConstants/${StrNum}~${StrNum}`;
1426
+ /**
1427
+ * @param {string | number} level
1428
+ * @param {string | number} categoryId
1429
+ * @returns `ProductCategoryConstantResourceName`
1430
+ * @example const productCategoryConstant: ResourceNames.ProductCategoryConstantResourceName = ResourceNames.productCategoryConstant(10987417, 21974834)
1431
+ */
1432
+ export declare function productCategoryConstant(level: string | number, categoryId: string | number): ProductCategoryConstantResourceName;
1433
+ export type ProductGroupViewResourceName = `customers/${StrNum}/productGroupViews/${StrNum}~${StrNum}`;
1434
+ /**
1435
+ * @param {string | number} customerId
1436
+ * @param {string | number} adgroupId
1437
+ * @param {string | number} criterionId
1438
+ * @returns `ProductGroupViewResourceName`
1439
+ * @example const productGroupView: ResourceNames.ProductGroupViewResourceName = ResourceNames.productGroupView(10987417, 21974834, 43949668)
1440
+ */
1441
+ export declare function productGroupView(customerId: string | number, adgroupId: string | number, criterionId: string | number): ProductGroupViewResourceName;
1442
+ export type ProductLinkResourceName = `customers/${StrNum}/productLinks/${StrNum}`;
1443
+ /**
1444
+ * @param {string | number} customerId
1445
+ * @param {string | number} productLinkId
1446
+ * @returns `ProductLinkResourceName`
1447
+ * @example const productLink: ResourceNames.ProductLinkResourceName = ResourceNames.productLink(10987417, 21974834)
1448
+ */
1449
+ export declare function productLink(customerId: string | number, productLinkId: string | number): ProductLinkResourceName;
1450
+ export type ProductLinkInvitationResourceName = `customers/${StrNum}/productLinkInvitations/${StrNum}`;
1451
+ /**
1452
+ * @param {string | number} customerId
1453
+ * @param {string | number} customerInvitationId
1454
+ * @returns `ProductLinkInvitationResourceName`
1455
+ * @example const productLinkInvitation: ResourceNames.ProductLinkInvitationResourceName = ResourceNames.productLinkInvitation(10987417, 21974834)
1456
+ */
1457
+ export declare function productLinkInvitation(customerId: string | number, customerInvitationId: string | number): ProductLinkInvitationResourceName;
1458
+ export type QualifyingQuestionResourceName = `qualifyingQuestions/${StrNum}`;
1459
+ /**
1460
+ * @param {string | number} qualifyingQuestionId
1461
+ * @returns `QualifyingQuestionResourceName`
1462
+ * @example const qualifyingQuestion: ResourceNames.QualifyingQuestionResourceName = ResourceNames.qualifyingQuestion(10987417)
1463
+ */
1464
+ export declare function qualifyingQuestion(qualifyingQuestionId: string | number): QualifyingQuestionResourceName;
1465
+ export type RecommendationResourceName = `customers/${StrNum}/recommendations/${StrNum}`;
1466
+ /**
1467
+ * @param {string | number} customerId
1468
+ * @param {string | number} recommendationId
1469
+ * @returns `RecommendationResourceName`
1470
+ * @example const recommendation: ResourceNames.RecommendationResourceName = ResourceNames.recommendation(10987417, 21974834)
1471
+ */
1472
+ export declare function recommendation(customerId: string | number, recommendationId: string | number): RecommendationResourceName;
1473
+ export type RecommendationSubscriptionResourceName = `customers/${StrNum}/recommendationSubscriptions/${StrNum}`;
1474
+ /**
1475
+ * @param {string | number} customerId
1476
+ * @param {string | number} recommendationType
1477
+ * @returns `RecommendationSubscriptionResourceName`
1478
+ * @example const recommendationSubscription: ResourceNames.RecommendationSubscriptionResourceName = ResourceNames.recommendationSubscription(10987417, 21974834)
1479
+ */
1480
+ export declare function recommendationSubscription(customerId: string | number, recommendationType: string | number): RecommendationSubscriptionResourceName;
1481
+ export type RemarketingActionResourceName = `customers/${StrNum}/remarketingActions/${StrNum}`;
1482
+ /**
1483
+ * @param {string | number} customerId
1484
+ * @param {string | number} remarketingActionId
1485
+ * @returns `RemarketingActionResourceName`
1486
+ * @example const remarketingAction: ResourceNames.RemarketingActionResourceName = ResourceNames.remarketingAction(10987417, 21974834)
1487
+ */
1488
+ export declare function remarketingAction(customerId: string | number, remarketingActionId: string | number): RemarketingActionResourceName;
1489
+ export type SearchTermViewResourceName = `customers/${StrNum}/searchTermViews/${StrNum}~${StrNum}~${StrNum}`;
1490
+ /**
1491
+ * @param {string | number} customerId
1492
+ * @param {string | number} campaignId
1493
+ * @param {string | number} adGroupId
1494
+ * @param {string | number} query
1495
+ * @returns `SearchTermViewResourceName`
1496
+ * @example const searchTermView: ResourceNames.SearchTermViewResourceName = ResourceNames.searchTermView(10987417, 21974834, 43949668, 87899336)
1497
+ */
1498
+ export declare function searchTermView(customerId: string | number, campaignId: string | number, adGroupId: string | number, query: string | number): SearchTermViewResourceName;
1499
+ export type SharedCriterionResourceName = `customers/${StrNum}/sharedCriteria/${StrNum}~${StrNum}`;
1500
+ /**
1501
+ * @param {string | number} customerId
1502
+ * @param {string | number} sharedSetId
1503
+ * @param {string | number} criterionId
1504
+ * @returns `SharedCriterionResourceName`
1505
+ * @example const sharedCriterion: ResourceNames.SharedCriterionResourceName = ResourceNames.sharedCriterion(10987417, 21974834, 43949668)
1506
+ */
1507
+ export declare function sharedCriterion(customerId: string | number, sharedSetId: string | number, criterionId: string | number): SharedCriterionResourceName;
1508
+ export type SharedSetResourceName = `customers/${StrNum}/sharedSets/${StrNum}`;
1509
+ /**
1510
+ * @param {string | number} customerId
1511
+ * @param {string | number} sharedSetId
1512
+ * @returns `SharedSetResourceName`
1513
+ * @example const sharedSet: ResourceNames.SharedSetResourceName = ResourceNames.sharedSet(10987417, 21974834)
1514
+ */
1515
+ export declare function sharedSet(customerId: string | number, sharedSetId: string | number): SharedSetResourceName;
1516
+ export type ShoppingPerformanceViewResourceName = `customers/${StrNum}/shoppingPerformanceView`;
1517
+ /**
1518
+ * @param {string | number} customerId
1519
+ * @returns `ShoppingPerformanceViewResourceName`
1520
+ * @example const shoppingPerformanceView: ResourceNames.ShoppingPerformanceViewResourceName = ResourceNames.shoppingPerformanceView(10987417)
1521
+ */
1522
+ export declare function shoppingPerformanceView(customerId: string | number): ShoppingPerformanceViewResourceName;
1523
+ export type ShoppingProductResourceName = `customers/${StrNum}/shoppingProducts/${StrNum}~${StrNum}~${StrNum}~${StrNum}~${StrNum}`;
1524
+ /**
1525
+ * @param {string | number} customerId
1526
+ * @param {string | number} merchantCenterId
1527
+ * @param {string | number} channel
1528
+ * @param {string | number} languageCode
1529
+ * @param {string | number} feedLabel
1530
+ * @param {string | number} itemId
1531
+ * @returns `ShoppingProductResourceName`
1532
+ * @example const shoppingProduct: ResourceNames.ShoppingProductResourceName = ResourceNames.shoppingProduct(10987417, 21974834, 43949668, 87899336, 175798672, 351597344)
1533
+ */
1534
+ export declare function shoppingProduct(customerId: string | number, merchantCenterId: string | number, channel: string | number, languageCode: string | number, feedLabel: string | number, itemId: string | number): ShoppingProductResourceName;
1535
+ export type SmartCampaignSearchTermViewResourceName = `customers/${StrNum}/smartCampaignSearchTermViews/${StrNum}~${StrNum}`;
1536
+ /**
1537
+ * @param {string | number} customerId
1538
+ * @param {string | number} campaignId
1539
+ * @param {string | number} query
1540
+ * @returns `SmartCampaignSearchTermViewResourceName`
1541
+ * @example const smartCampaignSearchTermView: ResourceNames.SmartCampaignSearchTermViewResourceName = ResourceNames.smartCampaignSearchTermView(10987417, 21974834, 43949668)
1542
+ */
1543
+ export declare function smartCampaignSearchTermView(customerId: string | number, campaignId: string | number, query: string | number): SmartCampaignSearchTermViewResourceName;
1544
+ export type SmartCampaignSettingResourceName = `customers/${StrNum}/smartCampaignSettings/${StrNum}`;
1545
+ /**
1546
+ * @param {string | number} customerId
1547
+ * @param {string | number} campaignId
1548
+ * @returns `SmartCampaignSettingResourceName`
1549
+ * @example const smartCampaignSetting: ResourceNames.SmartCampaignSettingResourceName = ResourceNames.smartCampaignSetting(10987417, 21974834)
1550
+ */
1551
+ export declare function smartCampaignSetting(customerId: string | number, campaignId: string | number): SmartCampaignSettingResourceName;
1552
+ export type TargetingExpansionViewResourceName = `customers/${StrNum}/targetingExpansionViews/${StrNum}~${StrNum}`;
1553
+ /**
1554
+ * @param {string | number} customerId
1555
+ * @param {string | number} campaignId
1556
+ * @param {string | number} targetingExpansionType
1557
+ * @returns `TargetingExpansionViewResourceName`
1558
+ * @example const targetingExpansionView: ResourceNames.TargetingExpansionViewResourceName = ResourceNames.targetingExpansionView(10987417, 21974834, 43949668)
1559
+ */
1560
+ export declare function targetingExpansionView(customerId: string | number, campaignId: string | number, targetingExpansionType: string | number): TargetingExpansionViewResourceName;
1561
+ export type ThirdPartyAppAnalyticsLinkResourceName = `customers/${StrNum}/thirdPartyAppAnalyticsLinks/${StrNum}`;
1562
+ /**
1563
+ * @param {string | number} customerId
1564
+ * @param {string | number} customerLinkId
1565
+ * @returns `ThirdPartyAppAnalyticsLinkResourceName`
1566
+ * @example const thirdPartyAppAnalyticsLink: ResourceNames.ThirdPartyAppAnalyticsLinkResourceName = ResourceNames.thirdPartyAppAnalyticsLink(10987417, 21974834)
1567
+ */
1568
+ export declare function thirdPartyAppAnalyticsLink(customerId: string | number, customerLinkId: string | number): ThirdPartyAppAnalyticsLinkResourceName;
1569
+ export type TopicConstantResourceName = `topicConstants/${StrNum}`;
1570
+ /**
1571
+ * @param {string | number} topicId
1572
+ * @returns `TopicConstantResourceName`
1573
+ * @example const topicConstant: ResourceNames.TopicConstantResourceName = ResourceNames.topicConstant(10987417)
1574
+ */
1575
+ export declare function topicConstant(topicId: string | number): TopicConstantResourceName;
1576
+ export type TopicViewResourceName = `customers/${StrNum}/topicViews/${StrNum}~${StrNum}`;
1577
+ /**
1578
+ * @param {string | number} customerId
1579
+ * @param {string | number} adGroupId
1580
+ * @param {string | number} criterionId
1581
+ * @returns `TopicViewResourceName`
1582
+ * @example const topicView: ResourceNames.TopicViewResourceName = ResourceNames.topicView(10987417, 21974834, 43949668)
1583
+ */
1584
+ export declare function topicView(customerId: string | number, adGroupId: string | number, criterionId: string | number): TopicViewResourceName;
1585
+ export type TravelActivityGroupViewResourceName = `customers/${StrNum}/travelActivityGroupViews/${StrNum}~${StrNum}`;
1586
+ /**
1587
+ * @param {string | number} customerId
1588
+ * @param {string | number} adGroupId
1589
+ * @param {string | number} criterionId
1590
+ * @returns `TravelActivityGroupViewResourceName`
1591
+ * @example const travelActivityGroupView: ResourceNames.TravelActivityGroupViewResourceName = ResourceNames.travelActivityGroupView(10987417, 21974834, 43949668)
1592
+ */
1593
+ export declare function travelActivityGroupView(customerId: string | number, adGroupId: string | number, criterionId: string | number): TravelActivityGroupViewResourceName;
1594
+ export type TravelActivityPerformanceViewResourceName = `customers/${StrNum}/travelActivityPerformanceViews`;
1595
+ /**
1596
+ * @param {string | number} customerId
1597
+ * @returns `TravelActivityPerformanceViewResourceName`
1598
+ * @example const travelActivityPerformanceView: ResourceNames.TravelActivityPerformanceViewResourceName = ResourceNames.travelActivityPerformanceView(10987417)
1599
+ */
1600
+ export declare function travelActivityPerformanceView(customerId: string | number): TravelActivityPerformanceViewResourceName;
1601
+ export type UserInterestResourceName = `customers/${StrNum}/userInterests/${StrNum}`;
1602
+ /**
1603
+ * @param {string | number} customerId
1604
+ * @param {string | number} userInterestId
1605
+ * @returns `UserInterestResourceName`
1606
+ * @example const userInterest: ResourceNames.UserInterestResourceName = ResourceNames.userInterest(10987417, 21974834)
1607
+ */
1608
+ export declare function userInterest(customerId: string | number, userInterestId: string | number): UserInterestResourceName;
1609
+ export type UserListResourceName = `customers/${StrNum}/userLists/${StrNum}`;
1610
+ /**
1611
+ * @param {string | number} customerId
1612
+ * @param {string | number} userListId
1613
+ * @returns `UserListResourceName`
1614
+ * @example const userList: ResourceNames.UserListResourceName = ResourceNames.userList(10987417, 21974834)
1615
+ */
1616
+ export declare function userList(customerId: string | number, userListId: string | number): UserListResourceName;
1617
+ export type UserListCustomerTypeResourceName = `customers/${StrNum}/userListCustomerTypes/${StrNum}~${StrNum}`;
1618
+ /**
1619
+ * @param {string | number} customerId
1620
+ * @param {string | number} userListId
1621
+ * @param {string | number} semanticLabel
1622
+ * @returns `UserListCustomerTypeResourceName`
1623
+ * @example const userListCustomerType: ResourceNames.UserListCustomerTypeResourceName = ResourceNames.userListCustomerType(10987417, 21974834, 43949668)
1624
+ */
1625
+ export declare function userListCustomerType(customerId: string | number, userListId: string | number, semanticLabel: string | number): UserListCustomerTypeResourceName;
1626
+ export type UserLocationViewResourceName = `customers/${StrNum}/userLocationViews/${StrNum}~${StrNum}`;
1627
+ /**
1628
+ * @param {string | number} customerId
1629
+ * @param {string | number} countryCriterionId
1630
+ * @param {string | number} isTargetingLocation
1631
+ * @returns `UserLocationViewResourceName`
1632
+ * @example const userLocationView: ResourceNames.UserLocationViewResourceName = ResourceNames.userLocationView(10987417, 21974834, 43949668)
1633
+ */
1634
+ export declare function userLocationView(customerId: string | number, countryCriterionId: string | number, isTargetingLocation: string | number): UserLocationViewResourceName;
1635
+ export type VideoResourceName = `customers/${StrNum}/videos/${StrNum}`;
1636
+ /**
1637
+ * @param {string | number} customerId
1638
+ * @param {string | number} videoId
1639
+ * @returns `VideoResourceName`
1640
+ * @example const video: ResourceNames.VideoResourceName = ResourceNames.video(10987417, 21974834)
1641
+ */
1642
+ export declare function video(customerId: string | number, videoId: string | number): VideoResourceName;
1643
+ export type VideoEnhancementResourceName = `customers/${StrNum}/videoEnhancements/${StrNum}`;
1644
+ /**
1645
+ * @param {string | number} customerId
1646
+ * @param {string | number} videoEnhancement
1647
+ * @returns `VideoEnhancementResourceName`
1648
+ * @example const videoEnhancement: ResourceNames.VideoEnhancementResourceName = ResourceNames.videoEnhancement(10987417, 21974834)
1649
+ */
1650
+ export declare function videoEnhancement(customerId: string | number, videoEnhancement: string | number): VideoEnhancementResourceName;
1651
+ export type WebpageViewResourceName = `customers/${StrNum}/webpageViews/${StrNum}~${StrNum}`;
1652
+ /**
1653
+ * @param {string | number} customerId
1654
+ * @param {string | number} adGroupId
1655
+ * @param {string | number} criterionId
1656
+ * @returns `WebpageViewResourceName`
1657
+ * @example const webpageView: ResourceNames.WebpageViewResourceName = ResourceNames.webpageView(10987417, 21974834, 43949668)
1658
+ */
1659
+ export declare function webpageView(customerId: string | number, adGroupId: string | number, criterionId: string | number): WebpageViewResourceName;
1660
+ export type YouTubeVideoUploadResourceName = `customers/${StrNum}/youTubeVideoUploads/${StrNum}`;
1661
+ /**
1662
+ * @param {string | number} customerId
1663
+ * @param {string | number} videoUploadId
1664
+ * @returns `YouTubeVideoUploadResourceName`
1665
+ * @example const youTubeVideoUpload: ResourceNames.YouTubeVideoUploadResourceName = ResourceNames.youTubeVideoUpload(10987417, 21974834)
1666
+ */
1667
+ export declare function youTubeVideoUpload(customerId: string | number, videoUploadId: string | number): YouTubeVideoUploadResourceName;
1668
+ export {};