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