google-ads-api 24.1.0 → 25.1.0-beta.1
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/README.md +9 -1
- package/build/{src → cjs}/client.d.ts +6 -4
- package/build/{src → cjs}/client.js +4 -4
- package/build/{src → cjs}/customer.d.ts +5 -5
- package/build/{src → cjs}/customer.js +24 -20
- package/build/{src → cjs}/hooks.d.ts +2 -2
- package/build/cjs/index.d.ts +9 -0
- package/build/{src → cjs}/index.js +22 -20
- package/build/{src → cjs}/parser.d.ts +2 -2
- package/build/{src → cjs}/parser.js +5 -5
- package/build/{src → cjs}/parserRest.js +7 -7
- package/build/{src → cjs}/protos/autogen/enums.d.ts +932 -433
- package/build/{src → cjs}/protos/autogen/enums.js +949 -430
- package/build/cjs/protos/autogen/fields.d.ts +1191 -0
- package/build/cjs/protos/autogen/fields.js +681 -0
- package/build/{src → cjs}/protos/autogen/resourceNames.d.ts +74 -15
- package/build/{src → cjs}/protos/autogen/resourceNames.js +90 -19
- package/build/{src → cjs}/protos/autogen/serviceFactory.d.ts +206 -215
- package/build/{src → cjs}/protos/autogen/serviceFactory.js +321 -392
- package/build/cjs/protos/index.d.ts +14 -0
- package/build/{src → cjs}/protos/index.js +12 -12
- package/build/{src → cjs}/query.d.ts +2 -2
- package/build/{src → cjs}/query.js +5 -5
- package/build/{src → cjs}/service.d.ts +5 -5
- package/build/cjs/service.js +263 -0
- package/build/{src → cjs}/types.d.ts +1 -1
- package/build/{src → cjs}/utils.d.ts +1 -1
- package/build/{src → cjs}/utils.js +2 -2
- package/build/cjs/version.d.ts +1 -0
- package/build/{src → cjs}/version.js +1 -1
- package/build/esm/client.d.ts +19 -0
- package/build/esm/client.js +40 -0
- package/build/esm/customer.d.ts +71 -0
- package/build/esm/customer.js +502 -0
- package/build/esm/hooks.d.ts +160 -0
- package/build/esm/hooks.js +1 -0
- package/build/esm/index.d.ts +9 -0
- package/build/esm/index.js +10 -0
- package/build/esm/package.json +1 -0
- package/build/esm/parser.d.ts +21 -0
- package/build/esm/parser.js +113 -0
- package/build/esm/parserRest.d.ts +1 -0
- package/build/esm/parserRest.js +112 -0
- package/build/esm/protos/autogen/enums.d.ts +6002 -0
- package/build/esm/protos/autogen/enums.js +6401 -0
- package/build/esm/protos/autogen/fields.d.ts +1191 -0
- package/build/esm/protos/autogen/fields.js +678 -0
- package/build/esm/protos/autogen/resourceNames.d.ts +1668 -0
- package/build/esm/protos/autogen/resourceNames.js +1859 -0
- package/build/esm/protos/autogen/serviceFactory.d.ts +1825 -0
- package/build/esm/protos/autogen/serviceFactory.js +18795 -0
- package/build/esm/protos/index.d.ts +14 -0
- package/build/esm/protos/index.js +19 -0
- package/build/esm/query.d.ts +62 -0
- package/build/esm/query.js +304 -0
- package/build/esm/service.d.ts +47 -0
- package/build/{src → esm}/service.js +42 -41
- package/build/esm/types.d.ts +75 -0
- package/build/esm/types.js +14 -0
- package/build/esm/utils.d.ts +49 -0
- package/build/esm/utils.js +108 -0
- package/build/esm/version.d.ts +1 -0
- package/build/esm/version.js +1 -0
- package/package.json +54 -13
- package/build/src/index.d.ts +0 -8
- package/build/src/protos/autogen/fields.d.ts +0 -1122
- package/build/src/protos/autogen/fields.js +0 -644
- package/build/src/protos/index.d.ts +0 -14
- package/build/src/testUtils.d.ts +0 -107
- package/build/src/testUtils.js +0 -333
- package/build/src/version.d.ts +0 -1
- /package/build/{src → cjs}/hooks.js +0 -0
- /package/build/{src → cjs}/parserRest.d.ts +0 -0
- /package/build/{src → cjs}/types.js +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export declare namespace enums {
|
|
2
2
|
/**
|
|
3
3
|
* @name ReservationRequestTypeEnum.ReservationRequestType
|
|
4
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
4
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/ReservationRequestTypeEnum.ReservationRequestType
|
|
5
5
|
*/
|
|
6
6
|
enum ReservationRequestType {
|
|
7
7
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -11,7 +11,7 @@ export declare namespace enums {
|
|
|
11
11
|
}
|
|
12
12
|
/**
|
|
13
13
|
* @name PreviewTypeEnum.PreviewType
|
|
14
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
14
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/PreviewTypeEnum.PreviewType
|
|
15
15
|
*/
|
|
16
16
|
enum PreviewType {
|
|
17
17
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -21,7 +21,7 @@ export declare namespace enums {
|
|
|
21
21
|
}
|
|
22
22
|
/**
|
|
23
23
|
* @name PolicyTopicEntryTypeEnum.PolicyTopicEntryType
|
|
24
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
24
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/PolicyTopicEntryTypeEnum.PolicyTopicEntryType
|
|
25
25
|
*/
|
|
26
26
|
enum PolicyTopicEntryType {
|
|
27
27
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -35,7 +35,7 @@ export declare namespace enums {
|
|
|
35
35
|
}
|
|
36
36
|
/**
|
|
37
37
|
* @name PolicyTopicEvidenceDestinationMismatchUrlTypeEnum.PolicyTopicEvidenceDestinationMismatchUrlType
|
|
38
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
38
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/PolicyTopicEvidenceDestinationMismatchUrlTypeEnum.PolicyTopicEvidenceDestinationMismatchUrlType
|
|
39
39
|
*/
|
|
40
40
|
enum PolicyTopicEvidenceDestinationMismatchUrlType {
|
|
41
41
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -48,7 +48,7 @@ export declare namespace enums {
|
|
|
48
48
|
}
|
|
49
49
|
/**
|
|
50
50
|
* @name PolicyTopicEvidenceDestinationNotWorkingDeviceEnum.PolicyTopicEvidenceDestinationNotWorkingDevice
|
|
51
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
51
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/PolicyTopicEvidenceDestinationNotWorkingDeviceEnum.PolicyTopicEvidenceDestinationNotWorkingDevice
|
|
52
52
|
*/
|
|
53
53
|
enum PolicyTopicEvidenceDestinationNotWorkingDevice {
|
|
54
54
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -59,7 +59,7 @@ export declare namespace enums {
|
|
|
59
59
|
}
|
|
60
60
|
/**
|
|
61
61
|
* @name PolicyTopicEvidenceDestinationNotWorkingDnsErrorTypeEnum.PolicyTopicEvidenceDestinationNotWorkingDnsErrorType
|
|
62
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
62
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/PolicyTopicEvidenceDestinationNotWorkingDnsErrorTypeEnum.PolicyTopicEvidenceDestinationNotWorkingDnsErrorType
|
|
63
63
|
*/
|
|
64
64
|
enum PolicyTopicEvidenceDestinationNotWorkingDnsErrorType {
|
|
65
65
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -69,7 +69,7 @@ export declare namespace enums {
|
|
|
69
69
|
}
|
|
70
70
|
/**
|
|
71
71
|
* @name AssetLinkPrimaryStatusEnum.AssetLinkPrimaryStatus
|
|
72
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
72
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/AssetLinkPrimaryStatusEnum.AssetLinkPrimaryStatus
|
|
73
73
|
*/
|
|
74
74
|
enum AssetLinkPrimaryStatus {
|
|
75
75
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -83,7 +83,7 @@ export declare namespace enums {
|
|
|
83
83
|
}
|
|
84
84
|
/**
|
|
85
85
|
* @name AssetLinkPrimaryStatusReasonEnum.AssetLinkPrimaryStatusReason
|
|
86
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
86
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/AssetLinkPrimaryStatusReasonEnum.AssetLinkPrimaryStatusReason
|
|
87
87
|
*/
|
|
88
88
|
enum AssetLinkPrimaryStatusReason {
|
|
89
89
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -96,7 +96,7 @@ export declare namespace enums {
|
|
|
96
96
|
}
|
|
97
97
|
/**
|
|
98
98
|
* @name AssetOfflineEvaluationErrorReasonsEnum.AssetOfflineEvaluationErrorReasons
|
|
99
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
99
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/AssetOfflineEvaluationErrorReasonsEnum.AssetOfflineEvaluationErrorReasons
|
|
100
100
|
*/
|
|
101
101
|
enum AssetOfflineEvaluationErrorReasons {
|
|
102
102
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -111,7 +111,7 @@ export declare namespace enums {
|
|
|
111
111
|
}
|
|
112
112
|
/**
|
|
113
113
|
* @name PolicyApprovalStatusEnum.PolicyApprovalStatus
|
|
114
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
114
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/PolicyApprovalStatusEnum.PolicyApprovalStatus
|
|
115
115
|
*/
|
|
116
116
|
enum PolicyApprovalStatus {
|
|
117
117
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -123,7 +123,7 @@ export declare namespace enums {
|
|
|
123
123
|
}
|
|
124
124
|
/**
|
|
125
125
|
* @name PolicyReviewStatusEnum.PolicyReviewStatus
|
|
126
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
126
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/PolicyReviewStatusEnum.PolicyReviewStatus
|
|
127
127
|
*/
|
|
128
128
|
enum PolicyReviewStatus {
|
|
129
129
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -135,7 +135,7 @@ export declare namespace enums {
|
|
|
135
135
|
}
|
|
136
136
|
/**
|
|
137
137
|
* @name AssetPerformanceLabelEnum.AssetPerformanceLabel
|
|
138
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
138
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/AssetPerformanceLabelEnum.AssetPerformanceLabel
|
|
139
139
|
*/
|
|
140
140
|
enum AssetPerformanceLabel {
|
|
141
141
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -149,7 +149,7 @@ export declare namespace enums {
|
|
|
149
149
|
}
|
|
150
150
|
/**
|
|
151
151
|
* @name ServedAssetFieldTypeEnum.ServedAssetFieldType
|
|
152
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
152
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/ServedAssetFieldTypeEnum.ServedAssetFieldType
|
|
153
153
|
*/
|
|
154
154
|
enum ServedAssetFieldType {
|
|
155
155
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -188,11 +188,12 @@ export declare namespace enums {
|
|
|
188
188
|
HEADLINE_AS_SITELINK_POSITION_ONE = 39,// HEADLINE_AS_SITELINK_POSITION_ONE
|
|
189
189
|
HEADLINE_AS_SITELINK_POSITION_TWO = 40,// HEADLINE_AS_SITELINK_POSITION_TWO
|
|
190
190
|
DESCRIPTION_LINE_HEADLINE_AS_SITELINK_POSITION_ONE = 41,// DESCRIPTION_LINE_HEADLINE_AS_SITELINK_POSITION_ONE
|
|
191
|
-
DESCRIPTION_LINE_HEADLINE_AS_SITELINK_POSITION_TWO = 42
|
|
191
|
+
DESCRIPTION_LINE_HEADLINE_AS_SITELINK_POSITION_TWO = 42,// DESCRIPTION_LINE_HEADLINE_AS_SITELINK_POSITION_TWO
|
|
192
|
+
TEXT_DISCLAIMER = 43
|
|
192
193
|
}
|
|
193
194
|
/**
|
|
194
195
|
* @name DisplayAdFormatSettingEnum.DisplayAdFormatSetting
|
|
195
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
196
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/DisplayAdFormatSettingEnum.DisplayAdFormatSetting
|
|
196
197
|
*/
|
|
197
198
|
enum DisplayAdFormatSetting {
|
|
198
199
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -203,7 +204,7 @@ export declare namespace enums {
|
|
|
203
204
|
}
|
|
204
205
|
/**
|
|
205
206
|
* @name DisplayUploadProductTypeEnum.DisplayUploadProductType
|
|
206
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
207
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/DisplayUploadProductTypeEnum.DisplayUploadProductType
|
|
207
208
|
*/
|
|
208
209
|
enum DisplayUploadProductType {
|
|
209
210
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -221,7 +222,7 @@ export declare namespace enums {
|
|
|
221
222
|
}
|
|
222
223
|
/**
|
|
223
224
|
* @name LegacyAppInstallAdAppStoreEnum.LegacyAppInstallAdAppStore
|
|
224
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
225
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/LegacyAppInstallAdAppStoreEnum.LegacyAppInstallAdAppStore
|
|
225
226
|
*/
|
|
226
227
|
enum LegacyAppInstallAdAppStore {
|
|
227
228
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -234,7 +235,7 @@ export declare namespace enums {
|
|
|
234
235
|
}
|
|
235
236
|
/**
|
|
236
237
|
* @name MimeTypeEnum.MimeType
|
|
237
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
238
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/MimeTypeEnum.MimeType
|
|
238
239
|
*/
|
|
239
240
|
enum MimeType {
|
|
240
241
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -254,7 +255,7 @@ export declare namespace enums {
|
|
|
254
255
|
}
|
|
255
256
|
/**
|
|
256
257
|
* @name VideoThumbnailEnum.VideoThumbnail
|
|
257
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
258
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/VideoThumbnailEnum.VideoThumbnail
|
|
258
259
|
*/
|
|
259
260
|
enum VideoThumbnail {
|
|
260
261
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -266,7 +267,7 @@ export declare namespace enums {
|
|
|
266
267
|
}
|
|
267
268
|
/**
|
|
268
269
|
* @name ApplicationInstanceEnum.ApplicationInstance
|
|
269
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
270
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/ApplicationInstanceEnum.ApplicationInstance
|
|
270
271
|
*/
|
|
271
272
|
enum ApplicationInstance {
|
|
272
273
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -276,7 +277,7 @@ export declare namespace enums {
|
|
|
276
277
|
}
|
|
277
278
|
/**
|
|
278
279
|
* @name ChainRelationshipTypeEnum.ChainRelationshipType
|
|
279
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
280
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/ChainRelationshipTypeEnum.ChainRelationshipType
|
|
280
281
|
*/
|
|
281
282
|
enum ChainRelationshipType {
|
|
282
283
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -286,7 +287,7 @@ export declare namespace enums {
|
|
|
286
287
|
}
|
|
287
288
|
/**
|
|
288
289
|
* @name LocationOwnershipTypeEnum.LocationOwnershipType
|
|
289
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
290
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/LocationOwnershipTypeEnum.LocationOwnershipType
|
|
290
291
|
*/
|
|
291
292
|
enum LocationOwnershipType {
|
|
292
293
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -296,7 +297,7 @@ export declare namespace enums {
|
|
|
296
297
|
}
|
|
297
298
|
/**
|
|
298
299
|
* @name LocationStringFilterTypeEnum.LocationStringFilterType
|
|
299
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
300
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/LocationStringFilterTypeEnum.LocationStringFilterType
|
|
300
301
|
*/
|
|
301
302
|
enum LocationStringFilterType {
|
|
302
303
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -305,7 +306,7 @@ export declare namespace enums {
|
|
|
305
306
|
}
|
|
306
307
|
/**
|
|
307
308
|
* @name AgeRangeTypeEnum.AgeRangeType
|
|
308
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
309
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/AgeRangeTypeEnum.AgeRangeType
|
|
309
310
|
*/
|
|
310
311
|
enum AgeRangeType {
|
|
311
312
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -320,7 +321,7 @@ export declare namespace enums {
|
|
|
320
321
|
}
|
|
321
322
|
/**
|
|
322
323
|
* @name AppPaymentModelTypeEnum.AppPaymentModelType
|
|
323
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
324
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/AppPaymentModelTypeEnum.AppPaymentModelType
|
|
324
325
|
*/
|
|
325
326
|
enum AppPaymentModelType {
|
|
326
327
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -329,7 +330,7 @@ export declare namespace enums {
|
|
|
329
330
|
}
|
|
330
331
|
/**
|
|
331
332
|
* @name BrandRequestRejectionReasonEnum.BrandRequestRejectionReason
|
|
332
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
333
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/BrandRequestRejectionReasonEnum.BrandRequestRejectionReason
|
|
333
334
|
*/
|
|
334
335
|
enum BrandRequestRejectionReason {
|
|
335
336
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -341,7 +342,7 @@ export declare namespace enums {
|
|
|
341
342
|
}
|
|
342
343
|
/**
|
|
343
344
|
* @name BrandStateEnum.BrandState
|
|
344
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
345
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/BrandStateEnum.BrandState
|
|
345
346
|
*/
|
|
346
347
|
enum BrandState {
|
|
347
348
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -355,7 +356,7 @@ export declare namespace enums {
|
|
|
355
356
|
}
|
|
356
357
|
/**
|
|
357
358
|
* @name ContentLabelTypeEnum.ContentLabelType
|
|
358
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
359
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/ContentLabelTypeEnum.ContentLabelType
|
|
359
360
|
*/
|
|
360
361
|
enum ContentLabelType {
|
|
361
362
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -388,7 +389,7 @@ export declare namespace enums {
|
|
|
388
389
|
}
|
|
389
390
|
/**
|
|
390
391
|
* @name DayOfWeekEnum.DayOfWeek
|
|
391
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
392
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/DayOfWeekEnum.DayOfWeek
|
|
392
393
|
*/
|
|
393
394
|
enum DayOfWeek {
|
|
394
395
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -403,7 +404,7 @@ export declare namespace enums {
|
|
|
403
404
|
}
|
|
404
405
|
/**
|
|
405
406
|
* @name DeviceEnum.Device
|
|
406
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
407
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/DeviceEnum.Device
|
|
407
408
|
*/
|
|
408
409
|
enum Device {
|
|
409
410
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -416,7 +417,7 @@ export declare namespace enums {
|
|
|
416
417
|
}
|
|
417
418
|
/**
|
|
418
419
|
* @name GenderTypeEnum.GenderType
|
|
419
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
420
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/GenderTypeEnum.GenderType
|
|
420
421
|
*/
|
|
421
422
|
enum GenderType {
|
|
422
423
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -427,7 +428,7 @@ export declare namespace enums {
|
|
|
427
428
|
}
|
|
428
429
|
/**
|
|
429
430
|
* @name HotelDateSelectionTypeEnum.HotelDateSelectionType
|
|
430
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
431
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/HotelDateSelectionTypeEnum.HotelDateSelectionType
|
|
431
432
|
*/
|
|
432
433
|
enum HotelDateSelectionType {
|
|
433
434
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -437,7 +438,7 @@ export declare namespace enums {
|
|
|
437
438
|
}
|
|
438
439
|
/**
|
|
439
440
|
* @name IncomeRangeTypeEnum.IncomeRangeType
|
|
440
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
441
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/IncomeRangeTypeEnum.IncomeRangeType
|
|
441
442
|
*/
|
|
442
443
|
enum IncomeRangeType {
|
|
443
444
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -452,7 +453,7 @@ export declare namespace enums {
|
|
|
452
453
|
}
|
|
453
454
|
/**
|
|
454
455
|
* @name InteractionTypeEnum.InteractionType
|
|
455
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
456
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/InteractionTypeEnum.InteractionType
|
|
456
457
|
*/
|
|
457
458
|
enum InteractionType {
|
|
458
459
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -461,7 +462,7 @@ export declare namespace enums {
|
|
|
461
462
|
}
|
|
462
463
|
/**
|
|
463
464
|
* @name KeywordMatchTypeEnum.KeywordMatchType
|
|
464
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
465
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/KeywordMatchTypeEnum.KeywordMatchType
|
|
465
466
|
*/
|
|
466
467
|
enum KeywordMatchType {
|
|
467
468
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -472,7 +473,7 @@ export declare namespace enums {
|
|
|
472
473
|
}
|
|
473
474
|
/**
|
|
474
475
|
* @name ListingGroupTypeEnum.ListingGroupType
|
|
475
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
476
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/ListingGroupTypeEnum.ListingGroupType
|
|
476
477
|
*/
|
|
477
478
|
enum ListingGroupType {
|
|
478
479
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -482,7 +483,7 @@ export declare namespace enums {
|
|
|
482
483
|
}
|
|
483
484
|
/**
|
|
484
485
|
* @name LocationGroupRadiusUnitsEnum.LocationGroupRadiusUnits
|
|
485
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
486
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/LocationGroupRadiusUnitsEnum.LocationGroupRadiusUnits
|
|
486
487
|
*/
|
|
487
488
|
enum LocationGroupRadiusUnits {
|
|
488
489
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -493,7 +494,7 @@ export declare namespace enums {
|
|
|
493
494
|
}
|
|
494
495
|
/**
|
|
495
496
|
* @name MinuteOfHourEnum.MinuteOfHour
|
|
496
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
497
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/MinuteOfHourEnum.MinuteOfHour
|
|
497
498
|
*/
|
|
498
499
|
enum MinuteOfHour {
|
|
499
500
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -505,7 +506,7 @@ export declare namespace enums {
|
|
|
505
506
|
}
|
|
506
507
|
/**
|
|
507
508
|
* @name ParentalStatusTypeEnum.ParentalStatusType
|
|
508
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
509
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/ParentalStatusTypeEnum.ParentalStatusType
|
|
509
510
|
*/
|
|
510
511
|
enum ParentalStatusType {
|
|
511
512
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -516,7 +517,7 @@ export declare namespace enums {
|
|
|
516
517
|
}
|
|
517
518
|
/**
|
|
518
519
|
* @name ProductCategoryLevelEnum.ProductCategoryLevel
|
|
519
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
520
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/ProductCategoryLevelEnum.ProductCategoryLevel
|
|
520
521
|
*/
|
|
521
522
|
enum ProductCategoryLevel {
|
|
522
523
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -529,7 +530,7 @@ export declare namespace enums {
|
|
|
529
530
|
}
|
|
530
531
|
/**
|
|
531
532
|
* @name ProductChannelEnum.ProductChannel
|
|
532
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
533
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/ProductChannelEnum.ProductChannel
|
|
533
534
|
*/
|
|
534
535
|
enum ProductChannel {
|
|
535
536
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -539,7 +540,7 @@ export declare namespace enums {
|
|
|
539
540
|
}
|
|
540
541
|
/**
|
|
541
542
|
* @name ProductChannelExclusivityEnum.ProductChannelExclusivity
|
|
542
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
543
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/ProductChannelExclusivityEnum.ProductChannelExclusivity
|
|
543
544
|
*/
|
|
544
545
|
enum ProductChannelExclusivity {
|
|
545
546
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -549,7 +550,7 @@ export declare namespace enums {
|
|
|
549
550
|
}
|
|
550
551
|
/**
|
|
551
552
|
* @name ProductConditionEnum.ProductCondition
|
|
552
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
553
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/ProductConditionEnum.ProductCondition
|
|
553
554
|
*/
|
|
554
555
|
enum ProductCondition {
|
|
555
556
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -560,7 +561,7 @@ export declare namespace enums {
|
|
|
560
561
|
}
|
|
561
562
|
/**
|
|
562
563
|
* @name ProductCustomAttributeIndexEnum.ProductCustomAttributeIndex
|
|
563
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
564
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/ProductCustomAttributeIndexEnum.ProductCustomAttributeIndex
|
|
564
565
|
*/
|
|
565
566
|
enum ProductCustomAttributeIndex {
|
|
566
567
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -573,7 +574,7 @@ export declare namespace enums {
|
|
|
573
574
|
}
|
|
574
575
|
/**
|
|
575
576
|
* @name ProductTypeLevelEnum.ProductTypeLevel
|
|
576
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
577
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/ProductTypeLevelEnum.ProductTypeLevel
|
|
577
578
|
*/
|
|
578
579
|
enum ProductTypeLevel {
|
|
579
580
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -586,7 +587,7 @@ export declare namespace enums {
|
|
|
586
587
|
}
|
|
587
588
|
/**
|
|
588
589
|
* @name ProximityRadiusUnitsEnum.ProximityRadiusUnits
|
|
589
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
590
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/ProximityRadiusUnitsEnum.ProximityRadiusUnits
|
|
590
591
|
*/
|
|
591
592
|
enum ProximityRadiusUnits {
|
|
592
593
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -596,7 +597,7 @@ export declare namespace enums {
|
|
|
596
597
|
}
|
|
597
598
|
/**
|
|
598
599
|
* @name WebpageConditionOperandEnum.WebpageConditionOperand
|
|
599
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
600
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/WebpageConditionOperandEnum.WebpageConditionOperand
|
|
600
601
|
*/
|
|
601
602
|
enum WebpageConditionOperand {
|
|
602
603
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -609,7 +610,7 @@ export declare namespace enums {
|
|
|
609
610
|
}
|
|
610
611
|
/**
|
|
611
612
|
* @name WebpageConditionOperatorEnum.WebpageConditionOperator
|
|
612
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
613
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/WebpageConditionOperatorEnum.WebpageConditionOperator
|
|
613
614
|
*/
|
|
614
615
|
enum WebpageConditionOperator {
|
|
615
616
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -619,7 +620,7 @@ export declare namespace enums {
|
|
|
619
620
|
}
|
|
620
621
|
/**
|
|
621
622
|
* @name BusinessMessageCallToActionTypeEnum.BusinessMessageCallToActionType
|
|
622
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
623
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/BusinessMessageCallToActionTypeEnum.BusinessMessageCallToActionType
|
|
623
624
|
*/
|
|
624
625
|
enum BusinessMessageCallToActionType {
|
|
625
626
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -635,7 +636,7 @@ export declare namespace enums {
|
|
|
635
636
|
}
|
|
636
637
|
/**
|
|
637
638
|
* @name BusinessMessageProviderEnum.BusinessMessageProvider
|
|
638
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
639
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/BusinessMessageProviderEnum.BusinessMessageProvider
|
|
639
640
|
*/
|
|
640
641
|
enum BusinessMessageProvider {
|
|
641
642
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -646,7 +647,7 @@ export declare namespace enums {
|
|
|
646
647
|
}
|
|
647
648
|
/**
|
|
648
649
|
* @name CallConversionReportingStateEnum.CallConversionReportingState
|
|
649
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
650
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/CallConversionReportingStateEnum.CallConversionReportingState
|
|
650
651
|
*/
|
|
651
652
|
enum CallConversionReportingState {
|
|
652
653
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -657,7 +658,7 @@ export declare namespace enums {
|
|
|
657
658
|
}
|
|
658
659
|
/**
|
|
659
660
|
* @name CallToActionTypeEnum.CallToActionType
|
|
660
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
661
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/CallToActionTypeEnum.CallToActionType
|
|
661
662
|
*/
|
|
662
663
|
enum CallToActionType {
|
|
663
664
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -682,7 +683,7 @@ export declare namespace enums {
|
|
|
682
683
|
}
|
|
683
684
|
/**
|
|
684
685
|
* @name LeadFormCallToActionTypeEnum.LeadFormCallToActionType
|
|
685
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
686
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/LeadFormCallToActionTypeEnum.LeadFormCallToActionType
|
|
686
687
|
*/
|
|
687
688
|
enum LeadFormCallToActionType {
|
|
688
689
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -704,7 +705,7 @@ export declare namespace enums {
|
|
|
704
705
|
}
|
|
705
706
|
/**
|
|
706
707
|
* @name LeadFormDesiredIntentEnum.LeadFormDesiredIntent
|
|
707
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
708
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/LeadFormDesiredIntentEnum.LeadFormDesiredIntent
|
|
708
709
|
*/
|
|
709
710
|
enum LeadFormDesiredIntent {
|
|
710
711
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -714,7 +715,7 @@ export declare namespace enums {
|
|
|
714
715
|
}
|
|
715
716
|
/**
|
|
716
717
|
* @name LeadFormFieldUserInputTypeEnum.LeadFormFieldUserInputType
|
|
717
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
718
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/LeadFormFieldUserInputTypeEnum.LeadFormFieldUserInputType
|
|
718
719
|
*/
|
|
719
720
|
enum LeadFormFieldUserInputType {
|
|
720
721
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -838,7 +839,7 @@ export declare namespace enums {
|
|
|
838
839
|
}
|
|
839
840
|
/**
|
|
840
841
|
* @name LeadFormPostSubmitCallToActionTypeEnum.LeadFormPostSubmitCallToActionType
|
|
841
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
842
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/LeadFormPostSubmitCallToActionTypeEnum.LeadFormPostSubmitCallToActionType
|
|
842
843
|
*/
|
|
843
844
|
enum LeadFormPostSubmitCallToActionType {
|
|
844
845
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -850,7 +851,7 @@ export declare namespace enums {
|
|
|
850
851
|
}
|
|
851
852
|
/**
|
|
852
853
|
* @name MobileAppVendorEnum.MobileAppVendor
|
|
853
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
854
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/MobileAppVendorEnum.MobileAppVendor
|
|
854
855
|
*/
|
|
855
856
|
enum MobileAppVendor {
|
|
856
857
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -860,7 +861,7 @@ export declare namespace enums {
|
|
|
860
861
|
}
|
|
861
862
|
/**
|
|
862
863
|
* @name PriceExtensionPriceQualifierEnum.PriceExtensionPriceQualifier
|
|
863
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
864
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/PriceExtensionPriceQualifierEnum.PriceExtensionPriceQualifier
|
|
864
865
|
*/
|
|
865
866
|
enum PriceExtensionPriceQualifier {
|
|
866
867
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -871,7 +872,7 @@ export declare namespace enums {
|
|
|
871
872
|
}
|
|
872
873
|
/**
|
|
873
874
|
* @name PriceExtensionPriceUnitEnum.PriceExtensionPriceUnit
|
|
874
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
875
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/PriceExtensionPriceUnitEnum.PriceExtensionPriceUnit
|
|
875
876
|
*/
|
|
876
877
|
enum PriceExtensionPriceUnit {
|
|
877
878
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -885,7 +886,7 @@ export declare namespace enums {
|
|
|
885
886
|
}
|
|
886
887
|
/**
|
|
887
888
|
* @name PriceExtensionTypeEnum.PriceExtensionType
|
|
888
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
889
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/PriceExtensionTypeEnum.PriceExtensionType
|
|
889
890
|
*/
|
|
890
891
|
enum PriceExtensionType {
|
|
891
892
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -902,7 +903,7 @@ export declare namespace enums {
|
|
|
902
903
|
}
|
|
903
904
|
/**
|
|
904
905
|
* @name PromotionBarcodeTypeEnum.PromotionBarcodeType
|
|
905
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
906
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/PromotionBarcodeTypeEnum.PromotionBarcodeType
|
|
906
907
|
*/
|
|
907
908
|
enum PromotionBarcodeType {
|
|
908
909
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -920,7 +921,7 @@ export declare namespace enums {
|
|
|
920
921
|
}
|
|
921
922
|
/**
|
|
922
923
|
* @name PromotionExtensionDiscountModifierEnum.PromotionExtensionDiscountModifier
|
|
923
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
924
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/PromotionExtensionDiscountModifierEnum.PromotionExtensionDiscountModifier
|
|
924
925
|
*/
|
|
925
926
|
enum PromotionExtensionDiscountModifier {
|
|
926
927
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -929,7 +930,7 @@ export declare namespace enums {
|
|
|
929
930
|
}
|
|
930
931
|
/**
|
|
931
932
|
* @name PromotionExtensionOccasionEnum.PromotionExtensionOccasion
|
|
932
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
933
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/PromotionExtensionOccasionEnum.PromotionExtensionOccasion
|
|
933
934
|
*/
|
|
934
935
|
enum PromotionExtensionOccasion {
|
|
935
936
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -974,7 +975,7 @@ export declare namespace enums {
|
|
|
974
975
|
}
|
|
975
976
|
/**
|
|
976
977
|
* @name AudienceInsightsDimensionEnum.AudienceInsightsDimension
|
|
977
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
978
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/AudienceInsightsDimensionEnum.AudienceInsightsDimension
|
|
978
979
|
*/
|
|
979
980
|
enum AudienceInsightsDimension {
|
|
980
981
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -998,17 +999,19 @@ export declare namespace enums {
|
|
|
998
999
|
}
|
|
999
1000
|
/**
|
|
1000
1001
|
* @name InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities
|
|
1001
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
1002
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities
|
|
1002
1003
|
*/
|
|
1003
1004
|
enum InsightsKnowledgeGraphEntityCapabilities {
|
|
1004
1005
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
1005
1006
|
UNKNOWN = 1,// UNKNOWN
|
|
1006
1007
|
CONTENT_TRENDING_INSIGHTS = 2,// CONTENT_TRENDING_INSIGHTS
|
|
1007
|
-
CREATOR_ATTRIBUTE = 3
|
|
1008
|
+
CREATOR_ATTRIBUTE = 3,// CREATOR_ATTRIBUTE
|
|
1009
|
+
BRAND = 4,// BRAND
|
|
1010
|
+
CREATOR_TOPIC_INSIGHTS = 5
|
|
1008
1011
|
}
|
|
1009
1012
|
/**
|
|
1010
1013
|
* @name UserListTypeEnum.UserListType
|
|
1011
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
1014
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/UserListTypeEnum.UserListType
|
|
1012
1015
|
*/
|
|
1013
1016
|
enum UserListType {
|
|
1014
1017
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -1023,7 +1026,7 @@ export declare namespace enums {
|
|
|
1023
1026
|
}
|
|
1024
1027
|
/**
|
|
1025
1028
|
* @name YouTubeVideoPropertyEnum.YouTubeVideoProperty
|
|
1026
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
1029
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/YouTubeVideoPropertyEnum.YouTubeVideoProperty
|
|
1027
1030
|
*/
|
|
1028
1031
|
enum YouTubeVideoProperty {
|
|
1029
1032
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -1033,7 +1036,7 @@ export declare namespace enums {
|
|
|
1033
1036
|
}
|
|
1034
1037
|
/**
|
|
1035
1038
|
* @name FixedCpmGoalEnum.FixedCpmGoal
|
|
1036
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
1039
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/FixedCpmGoalEnum.FixedCpmGoal
|
|
1037
1040
|
*/
|
|
1038
1041
|
enum FixedCpmGoal {
|
|
1039
1042
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -1043,7 +1046,7 @@ export declare namespace enums {
|
|
|
1043
1046
|
}
|
|
1044
1047
|
/**
|
|
1045
1048
|
* @name FixedCpmTargetFrequencyTimeUnitEnum.FixedCpmTargetFrequencyTimeUnit
|
|
1046
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
1049
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/FixedCpmTargetFrequencyTimeUnitEnum.FixedCpmTargetFrequencyTimeUnit
|
|
1047
1050
|
*/
|
|
1048
1051
|
enum FixedCpmTargetFrequencyTimeUnit {
|
|
1049
1052
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -1052,7 +1055,7 @@ export declare namespace enums {
|
|
|
1052
1055
|
}
|
|
1053
1056
|
/**
|
|
1054
1057
|
* @name TargetFrequencyTimeUnitEnum.TargetFrequencyTimeUnit
|
|
1055
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
1058
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/TargetFrequencyTimeUnitEnum.TargetFrequencyTimeUnit
|
|
1056
1059
|
*/
|
|
1057
1060
|
enum TargetFrequencyTimeUnit {
|
|
1058
1061
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -1062,7 +1065,7 @@ export declare namespace enums {
|
|
|
1062
1065
|
}
|
|
1063
1066
|
/**
|
|
1064
1067
|
* @name TargetImpressionShareLocationEnum.TargetImpressionShareLocation
|
|
1065
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
1068
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/TargetImpressionShareLocationEnum.TargetImpressionShareLocation
|
|
1066
1069
|
*/
|
|
1067
1070
|
enum TargetImpressionShareLocation {
|
|
1068
1071
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -1073,7 +1076,7 @@ export declare namespace enums {
|
|
|
1073
1076
|
}
|
|
1074
1077
|
/**
|
|
1075
1078
|
* @name CustomerLifecycleOptimizationModeEnum.CustomerLifecycleOptimizationMode
|
|
1076
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
1079
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/CustomerLifecycleOptimizationModeEnum.CustomerLifecycleOptimizationMode
|
|
1077
1080
|
*/
|
|
1078
1081
|
enum CustomerLifecycleOptimizationMode {
|
|
1079
1082
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -1083,7 +1086,7 @@ export declare namespace enums {
|
|
|
1083
1086
|
}
|
|
1084
1087
|
/**
|
|
1085
1088
|
* @name ConsentStatusEnum.ConsentStatus
|
|
1086
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
1089
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/ConsentStatusEnum.ConsentStatus
|
|
1087
1090
|
*/
|
|
1088
1091
|
enum ConsentStatus {
|
|
1089
1092
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -1093,7 +1096,7 @@ export declare namespace enums {
|
|
|
1093
1096
|
}
|
|
1094
1097
|
/**
|
|
1095
1098
|
* @name AdvertisingChannelSubTypeEnum.AdvertisingChannelSubType
|
|
1096
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
1099
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/AdvertisingChannelSubTypeEnum.AdvertisingChannelSubType
|
|
1097
1100
|
*/
|
|
1098
1101
|
enum AdvertisingChannelSubType {
|
|
1099
1102
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -1120,7 +1123,7 @@ export declare namespace enums {
|
|
|
1120
1123
|
}
|
|
1121
1124
|
/**
|
|
1122
1125
|
* @name AdvertisingChannelTypeEnum.AdvertisingChannelType
|
|
1123
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
1126
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/AdvertisingChannelTypeEnum.AdvertisingChannelType
|
|
1124
1127
|
*/
|
|
1125
1128
|
enum AdvertisingChannelType {
|
|
1126
1129
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -1140,7 +1143,7 @@ export declare namespace enums {
|
|
|
1140
1143
|
}
|
|
1141
1144
|
/**
|
|
1142
1145
|
* @name CriterionCategoryChannelAvailabilityModeEnum.CriterionCategoryChannelAvailabilityMode
|
|
1143
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
1146
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/CriterionCategoryChannelAvailabilityModeEnum.CriterionCategoryChannelAvailabilityMode
|
|
1144
1147
|
*/
|
|
1145
1148
|
enum CriterionCategoryChannelAvailabilityMode {
|
|
1146
1149
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -1151,7 +1154,7 @@ export declare namespace enums {
|
|
|
1151
1154
|
}
|
|
1152
1155
|
/**
|
|
1153
1156
|
* @name CriterionCategoryLocaleAvailabilityModeEnum.CriterionCategoryLocaleAvailabilityMode
|
|
1154
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
1157
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/CriterionCategoryLocaleAvailabilityModeEnum.CriterionCategoryLocaleAvailabilityMode
|
|
1155
1158
|
*/
|
|
1156
1159
|
enum CriterionCategoryLocaleAvailabilityMode {
|
|
1157
1160
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -1163,7 +1166,7 @@ export declare namespace enums {
|
|
|
1163
1166
|
}
|
|
1164
1167
|
/**
|
|
1165
1168
|
* @name CustomizerAttributeTypeEnum.CustomizerAttributeType
|
|
1166
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
1169
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/CustomizerAttributeTypeEnum.CustomizerAttributeType
|
|
1167
1170
|
*/
|
|
1168
1171
|
enum CustomizerAttributeType {
|
|
1169
1172
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -1175,7 +1178,7 @@ export declare namespace enums {
|
|
|
1175
1178
|
}
|
|
1176
1179
|
/**
|
|
1177
1180
|
* @name MonthOfYearEnum.MonthOfYear
|
|
1178
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
1181
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/MonthOfYearEnum.MonthOfYear
|
|
1179
1182
|
*/
|
|
1180
1183
|
enum MonthOfYear {
|
|
1181
1184
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -1193,9 +1196,54 @@ export declare namespace enums {
|
|
|
1193
1196
|
NOVEMBER = 12,// NOVEMBER
|
|
1194
1197
|
DECEMBER = 13
|
|
1195
1198
|
}
|
|
1199
|
+
/**
|
|
1200
|
+
* @name ConversionActionCategoryEnum.ConversionActionCategory
|
|
1201
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/ConversionActionCategoryEnum.ConversionActionCategory
|
|
1202
|
+
*/
|
|
1203
|
+
enum ConversionActionCategory {
|
|
1204
|
+
UNSPECIFIED = 0,// UNSPECIFIED
|
|
1205
|
+
UNKNOWN = 1,// UNKNOWN
|
|
1206
|
+
DEFAULT = 2,// DEFAULT
|
|
1207
|
+
PAGE_VIEW = 3,// PAGE_VIEW
|
|
1208
|
+
PURCHASE = 4,// PURCHASE
|
|
1209
|
+
SIGNUP = 5,// SIGNUP
|
|
1210
|
+
DOWNLOAD = 7,// DOWNLOAD
|
|
1211
|
+
ADD_TO_CART = 8,// ADD_TO_CART
|
|
1212
|
+
BEGIN_CHECKOUT = 9,// BEGIN_CHECKOUT
|
|
1213
|
+
SUBSCRIBE_PAID = 10,// SUBSCRIBE_PAID
|
|
1214
|
+
PHONE_CALL_LEAD = 11,// PHONE_CALL_LEAD
|
|
1215
|
+
IMPORTED_LEAD = 12,// IMPORTED_LEAD
|
|
1216
|
+
SUBMIT_LEAD_FORM = 13,// SUBMIT_LEAD_FORM
|
|
1217
|
+
BOOK_APPOINTMENT = 14,// BOOK_APPOINTMENT
|
|
1218
|
+
REQUEST_QUOTE = 15,// REQUEST_QUOTE
|
|
1219
|
+
GET_DIRECTIONS = 16,// GET_DIRECTIONS
|
|
1220
|
+
OUTBOUND_CLICK = 17,// OUTBOUND_CLICK
|
|
1221
|
+
CONTACT = 18,// CONTACT
|
|
1222
|
+
ENGAGEMENT = 19,// ENGAGEMENT
|
|
1223
|
+
STORE_VISIT = 20,// STORE_VISIT
|
|
1224
|
+
STORE_SALE = 21,// STORE_SALE
|
|
1225
|
+
QUALIFIED_LEAD = 22,// QUALIFIED_LEAD
|
|
1226
|
+
CONVERTED_LEAD = 23,// CONVERTED_LEAD
|
|
1227
|
+
YOUTUBE_FOLLOW_ON_VIEWS = 24
|
|
1228
|
+
}
|
|
1229
|
+
/**
|
|
1230
|
+
* @name ConversionOriginEnum.ConversionOrigin
|
|
1231
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/ConversionOriginEnum.ConversionOrigin
|
|
1232
|
+
*/
|
|
1233
|
+
enum ConversionOrigin {
|
|
1234
|
+
UNSPECIFIED = 0,// UNSPECIFIED
|
|
1235
|
+
UNKNOWN = 1,// UNKNOWN
|
|
1236
|
+
WEBSITE = 2,// WEBSITE
|
|
1237
|
+
GOOGLE_HOSTED = 3,// GOOGLE_HOSTED
|
|
1238
|
+
APP = 4,// APP
|
|
1239
|
+
CALL_FROM_ADS = 5,// CALL_FROM_ADS
|
|
1240
|
+
STORE = 6,// STORE
|
|
1241
|
+
YOUTUBE_HOSTED = 7,// YOUTUBE_HOSTED
|
|
1242
|
+
LOCAL_SERVICES_ADS = 8
|
|
1243
|
+
}
|
|
1196
1244
|
/**
|
|
1197
1245
|
* @name OptimizeAssetsExperimentSubtypeEnum.OptimizeAssetsExperimentSubtype
|
|
1198
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
1246
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/OptimizeAssetsExperimentSubtypeEnum.OptimizeAssetsExperimentSubtype
|
|
1199
1247
|
*/
|
|
1200
1248
|
enum OptimizeAssetsExperimentSubtype {
|
|
1201
1249
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -1206,7 +1254,7 @@ export declare namespace enums {
|
|
|
1206
1254
|
}
|
|
1207
1255
|
/**
|
|
1208
1256
|
* @name VideoExperimentSubtypeEnum.VideoExperimentSubtype
|
|
1209
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
1257
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/VideoExperimentSubtypeEnum.VideoExperimentSubtype
|
|
1210
1258
|
*/
|
|
1211
1259
|
enum VideoExperimentSubtype {
|
|
1212
1260
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -1217,7 +1265,7 @@ export declare namespace enums {
|
|
|
1217
1265
|
}
|
|
1218
1266
|
/**
|
|
1219
1267
|
* @name AppUrlOperatingSystemTypeEnum.AppUrlOperatingSystemType
|
|
1220
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
1268
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/AppUrlOperatingSystemTypeEnum.AppUrlOperatingSystemType
|
|
1221
1269
|
*/
|
|
1222
1270
|
enum AppUrlOperatingSystemType {
|
|
1223
1271
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -1227,7 +1275,7 @@ export declare namespace enums {
|
|
|
1227
1275
|
}
|
|
1228
1276
|
/**
|
|
1229
1277
|
* @name FrequencyCapEventTypeEnum.FrequencyCapEventType
|
|
1230
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
1278
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/FrequencyCapEventTypeEnum.FrequencyCapEventType
|
|
1231
1279
|
*/
|
|
1232
1280
|
enum FrequencyCapEventType {
|
|
1233
1281
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -1237,7 +1285,7 @@ export declare namespace enums {
|
|
|
1237
1285
|
}
|
|
1238
1286
|
/**
|
|
1239
1287
|
* @name FrequencyCapLevelEnum.FrequencyCapLevel
|
|
1240
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
1288
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/FrequencyCapLevelEnum.FrequencyCapLevel
|
|
1241
1289
|
*/
|
|
1242
1290
|
enum FrequencyCapLevel {
|
|
1243
1291
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -1248,7 +1296,7 @@ export declare namespace enums {
|
|
|
1248
1296
|
}
|
|
1249
1297
|
/**
|
|
1250
1298
|
* @name FrequencyCapTimeUnitEnum.FrequencyCapTimeUnit
|
|
1251
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
1299
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/FrequencyCapTimeUnitEnum.FrequencyCapTimeUnit
|
|
1252
1300
|
*/
|
|
1253
1301
|
enum FrequencyCapTimeUnit {
|
|
1254
1302
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -1259,7 +1307,7 @@ export declare namespace enums {
|
|
|
1259
1307
|
}
|
|
1260
1308
|
/**
|
|
1261
1309
|
* @name KeywordPlanAggregateMetricTypeEnum.KeywordPlanAggregateMetricType
|
|
1262
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
1310
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/KeywordPlanAggregateMetricTypeEnum.KeywordPlanAggregateMetricType
|
|
1263
1311
|
*/
|
|
1264
1312
|
enum KeywordPlanAggregateMetricType {
|
|
1265
1313
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -1268,7 +1316,7 @@ export declare namespace enums {
|
|
|
1268
1316
|
}
|
|
1269
1317
|
/**
|
|
1270
1318
|
* @name KeywordPlanCompetitionLevelEnum.KeywordPlanCompetitionLevel
|
|
1271
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
1319
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/KeywordPlanCompetitionLevelEnum.KeywordPlanCompetitionLevel
|
|
1272
1320
|
*/
|
|
1273
1321
|
enum KeywordPlanCompetitionLevel {
|
|
1274
1322
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -1279,7 +1327,7 @@ export declare namespace enums {
|
|
|
1279
1327
|
}
|
|
1280
1328
|
/**
|
|
1281
1329
|
* @name KeywordPlanConceptGroupTypeEnum.KeywordPlanConceptGroupType
|
|
1282
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
1330
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/KeywordPlanConceptGroupTypeEnum.KeywordPlanConceptGroupType
|
|
1283
1331
|
*/
|
|
1284
1332
|
enum KeywordPlanConceptGroupType {
|
|
1285
1333
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -1288,9 +1336,20 @@ export declare namespace enums {
|
|
|
1288
1336
|
OTHER_BRANDS = 3,// OTHER_BRANDS
|
|
1289
1337
|
NON_BRAND = 4
|
|
1290
1338
|
}
|
|
1339
|
+
/**
|
|
1340
|
+
* @name GlsPhoneNumberTypeEnum.GlsPhoneNumberType
|
|
1341
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/GlsPhoneNumberTypeEnum.GlsPhoneNumberType
|
|
1342
|
+
*/
|
|
1343
|
+
enum GlsPhoneNumberType {
|
|
1344
|
+
UNSPECIFIED = 0,// UNSPECIFIED
|
|
1345
|
+
UNKNOWN = 1,// UNKNOWN
|
|
1346
|
+
DESTINATION_PHONE_NUMBER_FOR_ADS = 2,// DESTINATION_PHONE_NUMBER_FOR_ADS
|
|
1347
|
+
DESTINATION_PHONE_NUMBER_FOR_SMS_ONLY = 3,// DESTINATION_PHONE_NUMBER_FOR_SMS_ONLY
|
|
1348
|
+
DESTINATION_PHONE_NUMBER_FOR_WHATSAPP_ONLY = 4
|
|
1349
|
+
}
|
|
1291
1350
|
/**
|
|
1292
1351
|
* @name ExperimentMetricEnum.ExperimentMetric
|
|
1293
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
1352
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/ExperimentMetricEnum.ExperimentMetric
|
|
1294
1353
|
*/
|
|
1295
1354
|
enum ExperimentMetric {
|
|
1296
1355
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -1311,7 +1370,7 @@ export declare namespace enums {
|
|
|
1311
1370
|
}
|
|
1312
1371
|
/**
|
|
1313
1372
|
* @name ExperimentMetricDirectionEnum.ExperimentMetricDirection
|
|
1314
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
1373
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/ExperimentMetricDirectionEnum.ExperimentMetricDirection
|
|
1315
1374
|
*/
|
|
1316
1375
|
enum ExperimentMetricDirection {
|
|
1317
1376
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -1324,7 +1383,7 @@ export declare namespace enums {
|
|
|
1324
1383
|
}
|
|
1325
1384
|
/**
|
|
1326
1385
|
* @name InteractionEventTypeEnum.InteractionEventType
|
|
1327
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
1386
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/InteractionEventTypeEnum.InteractionEventType
|
|
1328
1387
|
*/
|
|
1329
1388
|
enum InteractionEventType {
|
|
1330
1389
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -1336,7 +1395,7 @@ export declare namespace enums {
|
|
|
1336
1395
|
}
|
|
1337
1396
|
/**
|
|
1338
1397
|
* @name QualityScoreBucketEnum.QualityScoreBucket
|
|
1339
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
1398
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/QualityScoreBucketEnum.QualityScoreBucket
|
|
1340
1399
|
*/
|
|
1341
1400
|
enum QualityScoreBucket {
|
|
1342
1401
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -1347,7 +1406,7 @@ export declare namespace enums {
|
|
|
1347
1406
|
}
|
|
1348
1407
|
/**
|
|
1349
1408
|
* @name UserIdentifierSourceEnum.UserIdentifierSource
|
|
1350
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
1409
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/UserIdentifierSourceEnum.UserIdentifierSource
|
|
1351
1410
|
*/
|
|
1352
1411
|
enum UserIdentifierSource {
|
|
1353
1412
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -1357,7 +1416,7 @@ export declare namespace enums {
|
|
|
1357
1416
|
}
|
|
1358
1417
|
/**
|
|
1359
1418
|
* @name AdDestinationTypeEnum.AdDestinationType
|
|
1360
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
1419
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/AdDestinationTypeEnum.AdDestinationType
|
|
1361
1420
|
*/
|
|
1362
1421
|
enum AdDestinationType {
|
|
1363
1422
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -1376,7 +1435,7 @@ export declare namespace enums {
|
|
|
1376
1435
|
}
|
|
1377
1436
|
/**
|
|
1378
1437
|
* @name AdFormatTypeEnum.AdFormatType
|
|
1379
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
1438
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/AdFormatTypeEnum.AdFormatType
|
|
1380
1439
|
*/
|
|
1381
1440
|
enum AdFormatType {
|
|
1382
1441
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -1398,7 +1457,7 @@ export declare namespace enums {
|
|
|
1398
1457
|
}
|
|
1399
1458
|
/**
|
|
1400
1459
|
* @name AdNetworkTypeEnum.AdNetworkType
|
|
1401
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
1460
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/AdNetworkTypeEnum.AdNetworkType
|
|
1402
1461
|
*/
|
|
1403
1462
|
enum AdNetworkType {
|
|
1404
1463
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -1414,9 +1473,21 @@ export declare namespace enums {
|
|
|
1414
1473
|
DISCOVER = 12,// DISCOVER
|
|
1415
1474
|
MAPS = 13
|
|
1416
1475
|
}
|
|
1476
|
+
/**
|
|
1477
|
+
* @name AdSubFormatTypeEnum.AdSubFormatType
|
|
1478
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/AdSubFormatTypeEnum.AdSubFormatType
|
|
1479
|
+
*/
|
|
1480
|
+
enum AdSubFormatType {
|
|
1481
|
+
UNSPECIFIED = 0,// UNSPECIFIED
|
|
1482
|
+
UNKNOWN = 1,// UNKNOWN
|
|
1483
|
+
UNSEGMENTED = 2,// UNSEGMENTED
|
|
1484
|
+
INSTREAM_NON_SKIPPABLE_STANDARD = 3,// INSTREAM_NON_SKIPPABLE_STANDARD
|
|
1485
|
+
INSTREAM_NON_SKIPPABLE_MAX30_SEC = 4,// INSTREAM_NON_SKIPPABLE_MAX30_SEC
|
|
1486
|
+
INSTREAM_NON_SKIPPABLE_MAX60_SEC = 5
|
|
1487
|
+
}
|
|
1417
1488
|
/**
|
|
1418
1489
|
* @name AdSubNetworkTypeEnum.AdSubNetworkType
|
|
1419
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
1490
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/AdSubNetworkTypeEnum.AdSubNetworkType
|
|
1420
1491
|
*/
|
|
1421
1492
|
enum AdSubNetworkType {
|
|
1422
1493
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -1426,9 +1497,24 @@ export declare namespace enums {
|
|
|
1426
1497
|
YOUTUBE_INFEED = 4,// YOUTUBE_INFEED
|
|
1427
1498
|
YOUTUBE_SHORTS = 5
|
|
1428
1499
|
}
|
|
1500
|
+
/**
|
|
1501
|
+
* @name BrandLiftMeasurementTypeEnum.BrandLiftMeasurementType
|
|
1502
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/BrandLiftMeasurementTypeEnum.BrandLiftMeasurementType
|
|
1503
|
+
*/
|
|
1504
|
+
enum BrandLiftMeasurementType {
|
|
1505
|
+
UNSPECIFIED = 0,// UNSPECIFIED
|
|
1506
|
+
UNKNOWN = 1,// UNKNOWN
|
|
1507
|
+
RECALL = 2,// RECALL
|
|
1508
|
+
AWARENESS = 3,// AWARENESS
|
|
1509
|
+
CONSIDERATION = 4,// CONSIDERATION
|
|
1510
|
+
FAVORABILITY = 5,// FAVORABILITY
|
|
1511
|
+
PURCHASE_INTENT = 6,// PURCHASE_INTENT
|
|
1512
|
+
CUSTOM = 7,// CUSTOM
|
|
1513
|
+
ASSOCIATION = 8
|
|
1514
|
+
}
|
|
1429
1515
|
/**
|
|
1430
1516
|
* @name BudgetCampaignAssociationStatusEnum.BudgetCampaignAssociationStatus
|
|
1431
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
1517
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/BudgetCampaignAssociationStatusEnum.BudgetCampaignAssociationStatus
|
|
1432
1518
|
*/
|
|
1433
1519
|
enum BudgetCampaignAssociationStatus {
|
|
1434
1520
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -1438,7 +1524,7 @@ export declare namespace enums {
|
|
|
1438
1524
|
}
|
|
1439
1525
|
/**
|
|
1440
1526
|
* @name ClickTypeEnum.ClickType
|
|
1441
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
1527
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/ClickTypeEnum.ClickType
|
|
1442
1528
|
*/
|
|
1443
1529
|
enum ClickType {
|
|
1444
1530
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -1506,39 +1592,9 @@ export declare namespace enums {
|
|
|
1506
1592
|
CLICK_TO_MESSAGE_THIRD_PARTY_CLICK = 64,// CLICK_TO_MESSAGE_THIRD_PARTY_CLICK
|
|
1507
1593
|
CLICK_TO_MESSAGE_LANDING_PAGE_CLICK = 65
|
|
1508
1594
|
}
|
|
1509
|
-
/**
|
|
1510
|
-
* @name ConversionActionCategoryEnum.ConversionActionCategory
|
|
1511
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/v24/ConversionActionCategoryEnum.ConversionActionCategory
|
|
1512
|
-
*/
|
|
1513
|
-
enum ConversionActionCategory {
|
|
1514
|
-
UNSPECIFIED = 0,// UNSPECIFIED
|
|
1515
|
-
UNKNOWN = 1,// UNKNOWN
|
|
1516
|
-
DEFAULT = 2,// DEFAULT
|
|
1517
|
-
PAGE_VIEW = 3,// PAGE_VIEW
|
|
1518
|
-
PURCHASE = 4,// PURCHASE
|
|
1519
|
-
SIGNUP = 5,// SIGNUP
|
|
1520
|
-
DOWNLOAD = 7,// DOWNLOAD
|
|
1521
|
-
ADD_TO_CART = 8,// ADD_TO_CART
|
|
1522
|
-
BEGIN_CHECKOUT = 9,// BEGIN_CHECKOUT
|
|
1523
|
-
SUBSCRIBE_PAID = 10,// SUBSCRIBE_PAID
|
|
1524
|
-
PHONE_CALL_LEAD = 11,// PHONE_CALL_LEAD
|
|
1525
|
-
IMPORTED_LEAD = 12,// IMPORTED_LEAD
|
|
1526
|
-
SUBMIT_LEAD_FORM = 13,// SUBMIT_LEAD_FORM
|
|
1527
|
-
BOOK_APPOINTMENT = 14,// BOOK_APPOINTMENT
|
|
1528
|
-
REQUEST_QUOTE = 15,// REQUEST_QUOTE
|
|
1529
|
-
GET_DIRECTIONS = 16,// GET_DIRECTIONS
|
|
1530
|
-
OUTBOUND_CLICK = 17,// OUTBOUND_CLICK
|
|
1531
|
-
CONTACT = 18,// CONTACT
|
|
1532
|
-
ENGAGEMENT = 19,// ENGAGEMENT
|
|
1533
|
-
STORE_VISIT = 20,// STORE_VISIT
|
|
1534
|
-
STORE_SALE = 21,// STORE_SALE
|
|
1535
|
-
QUALIFIED_LEAD = 22,// QUALIFIED_LEAD
|
|
1536
|
-
CONVERTED_LEAD = 23,// CONVERTED_LEAD
|
|
1537
|
-
YOUTUBE_FOLLOW_ON_VIEWS = 24
|
|
1538
|
-
}
|
|
1539
1595
|
/**
|
|
1540
1596
|
* @name ConversionAttributionEventTypeEnum.ConversionAttributionEventType
|
|
1541
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
1597
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/ConversionAttributionEventTypeEnum.ConversionAttributionEventType
|
|
1542
1598
|
*/
|
|
1543
1599
|
enum ConversionAttributionEventType {
|
|
1544
1600
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -1549,7 +1605,7 @@ export declare namespace enums {
|
|
|
1549
1605
|
}
|
|
1550
1606
|
/**
|
|
1551
1607
|
* @name ConversionLagBucketEnum.ConversionLagBucket
|
|
1552
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
1608
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/ConversionLagBucketEnum.ConversionLagBucket
|
|
1553
1609
|
*/
|
|
1554
1610
|
enum ConversionLagBucket {
|
|
1555
1611
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -1574,9 +1630,19 @@ export declare namespace enums {
|
|
|
1574
1630
|
FORTY_FIVE_TO_SIXTY_DAYS = 19,// FORTY_FIVE_TO_SIXTY_DAYS
|
|
1575
1631
|
SIXTY_TO_NINETY_DAYS = 20
|
|
1576
1632
|
}
|
|
1633
|
+
/**
|
|
1634
|
+
* @name ConversionLiftIncludedConversionActionTypesEnum.ConversionLiftIncludedConversionActionTypes
|
|
1635
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/ConversionLiftIncludedConversionActionTypesEnum.ConversionLiftIncludedConversionActionTypes
|
|
1636
|
+
*/
|
|
1637
|
+
enum ConversionLiftIncludedConversionActionTypes {
|
|
1638
|
+
UNSPECIFIED = 0,// UNSPECIFIED
|
|
1639
|
+
UNKNOWN = 1,// UNKNOWN
|
|
1640
|
+
ALL = 2,// ALL
|
|
1641
|
+
SELECTED = 3
|
|
1642
|
+
}
|
|
1577
1643
|
/**
|
|
1578
1644
|
* @name ConversionOrAdjustmentLagBucketEnum.ConversionOrAdjustmentLagBucket
|
|
1579
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
1645
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/ConversionOrAdjustmentLagBucketEnum.ConversionOrAdjustmentLagBucket
|
|
1580
1646
|
*/
|
|
1581
1647
|
enum ConversionOrAdjustmentLagBucket {
|
|
1582
1648
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -1625,7 +1691,7 @@ export declare namespace enums {
|
|
|
1625
1691
|
}
|
|
1626
1692
|
/**
|
|
1627
1693
|
* @name ConversionValueRulePrimaryDimensionEnum.ConversionValueRulePrimaryDimension
|
|
1628
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
1694
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/ConversionValueRulePrimaryDimensionEnum.ConversionValueRulePrimaryDimension
|
|
1629
1695
|
*/
|
|
1630
1696
|
enum ConversionValueRulePrimaryDimension {
|
|
1631
1697
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -1637,11 +1703,12 @@ export declare namespace enums {
|
|
|
1637
1703
|
DEVICE = 6,// DEVICE
|
|
1638
1704
|
AUDIENCE = 7,// AUDIENCE
|
|
1639
1705
|
MULTIPLE = 8,// MULTIPLE
|
|
1640
|
-
ITINERARY = 9
|
|
1706
|
+
ITINERARY = 9,// ITINERARY
|
|
1707
|
+
LOYALTY_MEMBERSHIP = 10
|
|
1641
1708
|
}
|
|
1642
1709
|
/**
|
|
1643
1710
|
* @name ConvertingUserPriorEngagementTypeAndLtvBucketEnum.ConvertingUserPriorEngagementTypeAndLtvBucket
|
|
1644
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
1711
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/ConvertingUserPriorEngagementTypeAndLtvBucketEnum.ConvertingUserPriorEngagementTypeAndLtvBucket
|
|
1645
1712
|
*/
|
|
1646
1713
|
enum ConvertingUserPriorEngagementTypeAndLtvBucket {
|
|
1647
1714
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -1652,7 +1719,7 @@ export declare namespace enums {
|
|
|
1652
1719
|
}
|
|
1653
1720
|
/**
|
|
1654
1721
|
* @name ExternalConversionSourceEnum.ExternalConversionSource
|
|
1655
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
1722
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/ExternalConversionSourceEnum.ExternalConversionSource
|
|
1656
1723
|
*/
|
|
1657
1724
|
enum ExternalConversionSource {
|
|
1658
1725
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -1688,7 +1755,7 @@ export declare namespace enums {
|
|
|
1688
1755
|
}
|
|
1689
1756
|
/**
|
|
1690
1757
|
* @name HotelPriceBucketEnum.HotelPriceBucket
|
|
1691
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
1758
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/HotelPriceBucketEnum.HotelPriceBucket
|
|
1692
1759
|
*/
|
|
1693
1760
|
enum HotelPriceBucket {
|
|
1694
1761
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -1700,7 +1767,7 @@ export declare namespace enums {
|
|
|
1700
1767
|
}
|
|
1701
1768
|
/**
|
|
1702
1769
|
* @name HotelRateTypeEnum.HotelRateType
|
|
1703
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
1770
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/HotelRateTypeEnum.HotelRateType
|
|
1704
1771
|
*/
|
|
1705
1772
|
enum HotelRateType {
|
|
1706
1773
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -1712,7 +1779,7 @@ export declare namespace enums {
|
|
|
1712
1779
|
}
|
|
1713
1780
|
/**
|
|
1714
1781
|
* @name LandingPageSourceEnum.LandingPageSource
|
|
1715
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
1782
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/LandingPageSourceEnum.LandingPageSource
|
|
1716
1783
|
*/
|
|
1717
1784
|
enum LandingPageSource {
|
|
1718
1785
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -1720,9 +1787,25 @@ export declare namespace enums {
|
|
|
1720
1787
|
ADVERTISER = 2,// ADVERTISER
|
|
1721
1788
|
AUTOMATIC = 3
|
|
1722
1789
|
}
|
|
1790
|
+
/**
|
|
1791
|
+
* @name LoyaltyMembershipEnum.LoyaltyMembership
|
|
1792
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/LoyaltyMembershipEnum.LoyaltyMembership
|
|
1793
|
+
*/
|
|
1794
|
+
enum LoyaltyMembership {
|
|
1795
|
+
UNSPECIFIED = 0,// UNSPECIFIED
|
|
1796
|
+
UNKNOWN = 1,// UNKNOWN
|
|
1797
|
+
NONMEMBER = 2,// NONMEMBER
|
|
1798
|
+
TIER1 = 3,// TIER1
|
|
1799
|
+
TIER2 = 4,// TIER2
|
|
1800
|
+
TIER3 = 5,// TIER3
|
|
1801
|
+
TIER4 = 6,// TIER4
|
|
1802
|
+
TIER5 = 7,// TIER5
|
|
1803
|
+
TIER6 = 8,// TIER6
|
|
1804
|
+
TIER7 = 9
|
|
1805
|
+
}
|
|
1723
1806
|
/**
|
|
1724
1807
|
* @name MatchTypeEnum.MatchType
|
|
1725
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
1808
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/MatchTypeEnum.MatchType
|
|
1726
1809
|
*/
|
|
1727
1810
|
enum MatchType {
|
|
1728
1811
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -1734,7 +1817,7 @@ export declare namespace enums {
|
|
|
1734
1817
|
}
|
|
1735
1818
|
/**
|
|
1736
1819
|
* @name MobileDevicePlatformEnum.MobileDevicePlatform
|
|
1737
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
1820
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/MobileDevicePlatformEnum.MobileDevicePlatform
|
|
1738
1821
|
*/
|
|
1739
1822
|
enum MobileDevicePlatform {
|
|
1740
1823
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -1746,7 +1829,7 @@ export declare namespace enums {
|
|
|
1746
1829
|
}
|
|
1747
1830
|
/**
|
|
1748
1831
|
* @name RecommendationTypeEnum.RecommendationType
|
|
1749
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
1832
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/RecommendationTypeEnum.RecommendationType
|
|
1750
1833
|
*/
|
|
1751
1834
|
enum RecommendationType {
|
|
1752
1835
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -1804,11 +1887,12 @@ export declare namespace enums {
|
|
|
1804
1887
|
REFRESH_CUSTOMER_MATCH_LIST = 55,// REFRESH_CUSTOMER_MATCH_LIST
|
|
1805
1888
|
CUSTOM_AUDIENCE_OPT_IN = 56,// CUSTOM_AUDIENCE_OPT_IN
|
|
1806
1889
|
LEAD_FORM_ASSET = 57,// LEAD_FORM_ASSET
|
|
1807
|
-
IMPROVE_DEMAND_GEN_AD_STRENGTH = 58
|
|
1890
|
+
IMPROVE_DEMAND_GEN_AD_STRENGTH = 58,// IMPROVE_DEMAND_GEN_AD_STRENGTH
|
|
1891
|
+
CAMPAIGN_SPECIFIC_APP_GOAL = 59
|
|
1808
1892
|
}
|
|
1809
1893
|
/**
|
|
1810
1894
|
* @name SearchEngineResultsPageTypeEnum.SearchEngineResultsPageType
|
|
1811
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
1895
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/SearchEngineResultsPageTypeEnum.SearchEngineResultsPageType
|
|
1812
1896
|
*/
|
|
1813
1897
|
enum SearchEngineResultsPageType {
|
|
1814
1898
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -1819,7 +1903,7 @@ export declare namespace enums {
|
|
|
1819
1903
|
}
|
|
1820
1904
|
/**
|
|
1821
1905
|
* @name SearchTermMatchSourceEnum.SearchTermMatchSource
|
|
1822
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
1906
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/SearchTermMatchSourceEnum.SearchTermMatchSource
|
|
1823
1907
|
*/
|
|
1824
1908
|
enum SearchTermMatchSource {
|
|
1825
1909
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -1833,7 +1917,7 @@ export declare namespace enums {
|
|
|
1833
1917
|
}
|
|
1834
1918
|
/**
|
|
1835
1919
|
* @name SearchTermMatchTypeEnum.SearchTermMatchType
|
|
1836
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
1920
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/SearchTermMatchTypeEnum.SearchTermMatchType
|
|
1837
1921
|
*/
|
|
1838
1922
|
enum SearchTermMatchType {
|
|
1839
1923
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -1848,7 +1932,7 @@ export declare namespace enums {
|
|
|
1848
1932
|
}
|
|
1849
1933
|
/**
|
|
1850
1934
|
* @name SearchTermTargetingStatusEnum.SearchTermTargetingStatus
|
|
1851
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
1935
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/SearchTermTargetingStatusEnum.SearchTermTargetingStatus
|
|
1852
1936
|
*/
|
|
1853
1937
|
enum SearchTermTargetingStatus {
|
|
1854
1938
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -1860,7 +1944,7 @@ export declare namespace enums {
|
|
|
1860
1944
|
}
|
|
1861
1945
|
/**
|
|
1862
1946
|
* @name SkAdNetworkAdEventTypeEnum.SkAdNetworkAdEventType
|
|
1863
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
1947
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/SkAdNetworkAdEventTypeEnum.SkAdNetworkAdEventType
|
|
1864
1948
|
*/
|
|
1865
1949
|
enum SkAdNetworkAdEventType {
|
|
1866
1950
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -1871,7 +1955,7 @@ export declare namespace enums {
|
|
|
1871
1955
|
}
|
|
1872
1956
|
/**
|
|
1873
1957
|
* @name SkAdNetworkAttributionCreditEnum.SkAdNetworkAttributionCredit
|
|
1874
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
1958
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/SkAdNetworkAttributionCreditEnum.SkAdNetworkAttributionCredit
|
|
1875
1959
|
*/
|
|
1876
1960
|
enum SkAdNetworkAttributionCredit {
|
|
1877
1961
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -1882,7 +1966,7 @@ export declare namespace enums {
|
|
|
1882
1966
|
}
|
|
1883
1967
|
/**
|
|
1884
1968
|
* @name SkAdNetworkCoarseConversionValueEnum.SkAdNetworkCoarseConversionValue
|
|
1885
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
1969
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/SkAdNetworkCoarseConversionValueEnum.SkAdNetworkCoarseConversionValue
|
|
1886
1970
|
*/
|
|
1887
1971
|
enum SkAdNetworkCoarseConversionValue {
|
|
1888
1972
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -1895,7 +1979,7 @@ export declare namespace enums {
|
|
|
1895
1979
|
}
|
|
1896
1980
|
/**
|
|
1897
1981
|
* @name SkAdNetworkSourceTypeEnum.SkAdNetworkSourceType
|
|
1898
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
1982
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/SkAdNetworkSourceTypeEnum.SkAdNetworkSourceType
|
|
1899
1983
|
*/
|
|
1900
1984
|
enum SkAdNetworkSourceType {
|
|
1901
1985
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -1906,7 +1990,7 @@ export declare namespace enums {
|
|
|
1906
1990
|
}
|
|
1907
1991
|
/**
|
|
1908
1992
|
* @name SkAdNetworkUserTypeEnum.SkAdNetworkUserType
|
|
1909
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
1993
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/SkAdNetworkUserTypeEnum.SkAdNetworkUserType
|
|
1910
1994
|
*/
|
|
1911
1995
|
enum SkAdNetworkUserType {
|
|
1912
1996
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -1917,7 +2001,7 @@ export declare namespace enums {
|
|
|
1917
2001
|
}
|
|
1918
2002
|
/**
|
|
1919
2003
|
* @name SlotEnum.Slot
|
|
1920
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
2004
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/SlotEnum.Slot
|
|
1921
2005
|
*/
|
|
1922
2006
|
enum Slot {
|
|
1923
2007
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -1932,7 +2016,7 @@ export declare namespace enums {
|
|
|
1932
2016
|
}
|
|
1933
2017
|
/**
|
|
1934
2018
|
* @name VerticalAdsItemVerticalTypeEnum.VerticalAdsItemVerticalType
|
|
1935
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
2019
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/VerticalAdsItemVerticalTypeEnum.VerticalAdsItemVerticalType
|
|
1936
2020
|
*/
|
|
1937
2021
|
enum VerticalAdsItemVerticalType {
|
|
1938
2022
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -1944,9 +2028,30 @@ export declare namespace enums {
|
|
|
1944
2028
|
THINGS_TO_DO = 6,// THINGS_TO_DO
|
|
1945
2029
|
FLIGHTS = 7
|
|
1946
2030
|
}
|
|
2031
|
+
/**
|
|
2032
|
+
* @name SyntheticContentAttestationStatusEnum.SyntheticContentAttestationStatus
|
|
2033
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/SyntheticContentAttestationStatusEnum.SyntheticContentAttestationStatus
|
|
2034
|
+
*/
|
|
2035
|
+
enum SyntheticContentAttestationStatus {
|
|
2036
|
+
UNSPECIFIED = 0,// UNSPECIFIED
|
|
2037
|
+
UNKNOWN = 1,// UNKNOWN
|
|
2038
|
+
NOT_SYNTHETIC = 2,// NOT_SYNTHETIC
|
|
2039
|
+
IS_SYNTHETIC = 3
|
|
2040
|
+
}
|
|
2041
|
+
/**
|
|
2042
|
+
* @name SyntheticContentSourceEnum.SyntheticContentSource
|
|
2043
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/SyntheticContentSourceEnum.SyntheticContentSource
|
|
2044
|
+
*/
|
|
2045
|
+
enum SyntheticContentSource {
|
|
2046
|
+
UNSPECIFIED = 0,// UNSPECIFIED
|
|
2047
|
+
UNKNOWN = 1,// UNKNOWN
|
|
2048
|
+
ADVERTISER_ATTESTED = 2,// ADVERTISER_ATTESTED
|
|
2049
|
+
GOOGLE_GENERATED_ADVERTISER_REVIEWED = 3,// GOOGLE_GENERATED_ADVERTISER_REVIEWED
|
|
2050
|
+
GOOGLE_GENERATED_FULLY_AUTOMATED = 4
|
|
2051
|
+
}
|
|
1947
2052
|
/**
|
|
1948
2053
|
* @name TrackingCodePageFormatEnum.TrackingCodePageFormat
|
|
1949
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
2054
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/TrackingCodePageFormatEnum.TrackingCodePageFormat
|
|
1950
2055
|
*/
|
|
1951
2056
|
enum TrackingCodePageFormat {
|
|
1952
2057
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -1956,7 +2061,7 @@ export declare namespace enums {
|
|
|
1956
2061
|
}
|
|
1957
2062
|
/**
|
|
1958
2063
|
* @name TrackingCodeTypeEnum.TrackingCodeType
|
|
1959
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
2064
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/TrackingCodeTypeEnum.TrackingCodeType
|
|
1960
2065
|
*/
|
|
1961
2066
|
enum TrackingCodeType {
|
|
1962
2067
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -1968,7 +2073,7 @@ export declare namespace enums {
|
|
|
1968
2073
|
}
|
|
1969
2074
|
/**
|
|
1970
2075
|
* @name TargetingDimensionEnum.TargetingDimension
|
|
1971
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
2076
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/TargetingDimensionEnum.TargetingDimension
|
|
1972
2077
|
*/
|
|
1973
2078
|
enum TargetingDimension {
|
|
1974
2079
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -1984,7 +2089,7 @@ export declare namespace enums {
|
|
|
1984
2089
|
}
|
|
1985
2090
|
/**
|
|
1986
2091
|
* @name ThirdPartyBrandLiftIntegrationPartnerEnum.ThirdPartyBrandLiftIntegrationPartner
|
|
1987
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
2092
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/ThirdPartyBrandLiftIntegrationPartnerEnum.ThirdPartyBrandLiftIntegrationPartner
|
|
1988
2093
|
*/
|
|
1989
2094
|
enum ThirdPartyBrandLiftIntegrationPartner {
|
|
1990
2095
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -1996,7 +2101,7 @@ export declare namespace enums {
|
|
|
1996
2101
|
}
|
|
1997
2102
|
/**
|
|
1998
2103
|
* @name ThirdPartyBrandSafetyIntegrationPartnerEnum.ThirdPartyBrandSafetyIntegrationPartner
|
|
1999
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
2104
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/ThirdPartyBrandSafetyIntegrationPartnerEnum.ThirdPartyBrandSafetyIntegrationPartner
|
|
2000
2105
|
*/
|
|
2001
2106
|
enum ThirdPartyBrandSafetyIntegrationPartner {
|
|
2002
2107
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -2005,9 +2110,18 @@ export declare namespace enums {
|
|
|
2005
2110
|
INTEGRAL_AD_SCIENCE = 3,// INTEGRAL_AD_SCIENCE
|
|
2006
2111
|
ZEFR = 4
|
|
2007
2112
|
}
|
|
2113
|
+
/**
|
|
2114
|
+
* @name ThirdPartyConversionAttributionIntegrationPartnerEnum.ThirdPartyConversionAttributionIntegrationPartner
|
|
2115
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/ThirdPartyConversionAttributionIntegrationPartnerEnum.ThirdPartyConversionAttributionIntegrationPartner
|
|
2116
|
+
*/
|
|
2117
|
+
enum ThirdPartyConversionAttributionIntegrationPartner {
|
|
2118
|
+
UNSPECIFIED = 0,// UNSPECIFIED
|
|
2119
|
+
UNKNOWN = 1,// UNKNOWN
|
|
2120
|
+
TRANSUNION = 2
|
|
2121
|
+
}
|
|
2008
2122
|
/**
|
|
2009
2123
|
* @name ThirdPartyReachIntegrationPartnerEnum.ThirdPartyReachIntegrationPartner
|
|
2010
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
2124
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/ThirdPartyReachIntegrationPartnerEnum.ThirdPartyReachIntegrationPartner
|
|
2011
2125
|
*/
|
|
2012
2126
|
enum ThirdPartyReachIntegrationPartner {
|
|
2013
2127
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -2024,7 +2138,7 @@ export declare namespace enums {
|
|
|
2024
2138
|
}
|
|
2025
2139
|
/**
|
|
2026
2140
|
* @name ThirdPartyViewabilityIntegrationPartnerEnum.ThirdPartyViewabilityIntegrationPartner
|
|
2027
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
2141
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/ThirdPartyViewabilityIntegrationPartnerEnum.ThirdPartyViewabilityIntegrationPartner
|
|
2028
2142
|
*/
|
|
2029
2143
|
enum ThirdPartyViewabilityIntegrationPartner {
|
|
2030
2144
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -2035,7 +2149,7 @@ export declare namespace enums {
|
|
|
2035
2149
|
}
|
|
2036
2150
|
/**
|
|
2037
2151
|
* @name CustomerMatchUploadKeyTypeEnum.CustomerMatchUploadKeyType
|
|
2038
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
2152
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/CustomerMatchUploadKeyTypeEnum.CustomerMatchUploadKeyType
|
|
2039
2153
|
*/
|
|
2040
2154
|
enum CustomerMatchUploadKeyType {
|
|
2041
2155
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -2046,7 +2160,7 @@ export declare namespace enums {
|
|
|
2046
2160
|
}
|
|
2047
2161
|
/**
|
|
2048
2162
|
* @name LookalikeExpansionLevelEnum.LookalikeExpansionLevel
|
|
2049
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
2163
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/LookalikeExpansionLevelEnum.LookalikeExpansionLevel
|
|
2050
2164
|
*/
|
|
2051
2165
|
enum LookalikeExpansionLevel {
|
|
2052
2166
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -2057,7 +2171,7 @@ export declare namespace enums {
|
|
|
2057
2171
|
}
|
|
2058
2172
|
/**
|
|
2059
2173
|
* @name UserListCrmDataSourceTypeEnum.UserListCrmDataSourceType
|
|
2060
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
2174
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/UserListCrmDataSourceTypeEnum.UserListCrmDataSourceType
|
|
2061
2175
|
*/
|
|
2062
2176
|
enum UserListCrmDataSourceType {
|
|
2063
2177
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -2069,7 +2183,7 @@ export declare namespace enums {
|
|
|
2069
2183
|
}
|
|
2070
2184
|
/**
|
|
2071
2185
|
* @name UserListDateRuleItemOperatorEnum.UserListDateRuleItemOperator
|
|
2072
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
2186
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/UserListDateRuleItemOperatorEnum.UserListDateRuleItemOperator
|
|
2073
2187
|
*/
|
|
2074
2188
|
enum UserListDateRuleItemOperator {
|
|
2075
2189
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -2081,7 +2195,7 @@ export declare namespace enums {
|
|
|
2081
2195
|
}
|
|
2082
2196
|
/**
|
|
2083
2197
|
* @name UserListFlexibleRuleOperatorEnum.UserListFlexibleRuleOperator
|
|
2084
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
2198
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/UserListFlexibleRuleOperatorEnum.UserListFlexibleRuleOperator
|
|
2085
2199
|
*/
|
|
2086
2200
|
enum UserListFlexibleRuleOperator {
|
|
2087
2201
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -2091,7 +2205,7 @@ export declare namespace enums {
|
|
|
2091
2205
|
}
|
|
2092
2206
|
/**
|
|
2093
2207
|
* @name UserListLogicalRuleOperatorEnum.UserListLogicalRuleOperator
|
|
2094
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
2208
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/UserListLogicalRuleOperatorEnum.UserListLogicalRuleOperator
|
|
2095
2209
|
*/
|
|
2096
2210
|
enum UserListLogicalRuleOperator {
|
|
2097
2211
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -2102,7 +2216,7 @@ export declare namespace enums {
|
|
|
2102
2216
|
}
|
|
2103
2217
|
/**
|
|
2104
2218
|
* @name UserListNumberRuleItemOperatorEnum.UserListNumberRuleItemOperator
|
|
2105
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
2219
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/UserListNumberRuleItemOperatorEnum.UserListNumberRuleItemOperator
|
|
2106
2220
|
*/
|
|
2107
2221
|
enum UserListNumberRuleItemOperator {
|
|
2108
2222
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -2116,7 +2230,7 @@ export declare namespace enums {
|
|
|
2116
2230
|
}
|
|
2117
2231
|
/**
|
|
2118
2232
|
* @name UserListPrepopulationStatusEnum.UserListPrepopulationStatus
|
|
2119
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
2233
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/UserListPrepopulationStatusEnum.UserListPrepopulationStatus
|
|
2120
2234
|
*/
|
|
2121
2235
|
enum UserListPrepopulationStatus {
|
|
2122
2236
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -2127,7 +2241,7 @@ export declare namespace enums {
|
|
|
2127
2241
|
}
|
|
2128
2242
|
/**
|
|
2129
2243
|
* @name UserListRuleTypeEnum.UserListRuleType
|
|
2130
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
2244
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/UserListRuleTypeEnum.UserListRuleType
|
|
2131
2245
|
*/
|
|
2132
2246
|
enum UserListRuleType {
|
|
2133
2247
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -2137,7 +2251,7 @@ export declare namespace enums {
|
|
|
2137
2251
|
}
|
|
2138
2252
|
/**
|
|
2139
2253
|
* @name UserListStringRuleItemOperatorEnum.UserListStringRuleItemOperator
|
|
2140
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
2254
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/UserListStringRuleItemOperatorEnum.UserListStringRuleItemOperator
|
|
2141
2255
|
*/
|
|
2142
2256
|
enum UserListStringRuleItemOperator {
|
|
2143
2257
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -2153,7 +2267,7 @@ export declare namespace enums {
|
|
|
2153
2267
|
}
|
|
2154
2268
|
/**
|
|
2155
2269
|
* @name AccessInvitationStatusEnum.AccessInvitationStatus
|
|
2156
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
2270
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/AccessInvitationStatusEnum.AccessInvitationStatus
|
|
2157
2271
|
*/
|
|
2158
2272
|
enum AccessInvitationStatus {
|
|
2159
2273
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -2164,7 +2278,7 @@ export declare namespace enums {
|
|
|
2164
2278
|
}
|
|
2165
2279
|
/**
|
|
2166
2280
|
* @name AccessReasonEnum.AccessReason
|
|
2167
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
2281
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/AccessReasonEnum.AccessReason
|
|
2168
2282
|
*/
|
|
2169
2283
|
enum AccessReason {
|
|
2170
2284
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -2177,7 +2291,7 @@ export declare namespace enums {
|
|
|
2177
2291
|
}
|
|
2178
2292
|
/**
|
|
2179
2293
|
* @name AccessRoleEnum.AccessRole
|
|
2180
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
2294
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/AccessRoleEnum.AccessRole
|
|
2181
2295
|
*/
|
|
2182
2296
|
enum AccessRole {
|
|
2183
2297
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -2189,7 +2303,7 @@ export declare namespace enums {
|
|
|
2189
2303
|
}
|
|
2190
2304
|
/**
|
|
2191
2305
|
* @name AccountBudgetProposalStatusEnum.AccountBudgetProposalStatus
|
|
2192
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
2306
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/AccountBudgetProposalStatusEnum.AccountBudgetProposalStatus
|
|
2193
2307
|
*/
|
|
2194
2308
|
enum AccountBudgetProposalStatus {
|
|
2195
2309
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -2202,7 +2316,7 @@ export declare namespace enums {
|
|
|
2202
2316
|
}
|
|
2203
2317
|
/**
|
|
2204
2318
|
* @name AccountBudgetProposalTypeEnum.AccountBudgetProposalType
|
|
2205
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
2319
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/AccountBudgetProposalTypeEnum.AccountBudgetProposalType
|
|
2206
2320
|
*/
|
|
2207
2321
|
enum AccountBudgetProposalType {
|
|
2208
2322
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -2214,7 +2328,7 @@ export declare namespace enums {
|
|
|
2214
2328
|
}
|
|
2215
2329
|
/**
|
|
2216
2330
|
* @name AccountBudgetStatusEnum.AccountBudgetStatus
|
|
2217
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
2331
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/AccountBudgetStatusEnum.AccountBudgetStatus
|
|
2218
2332
|
*/
|
|
2219
2333
|
enum AccountBudgetStatus {
|
|
2220
2334
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -2225,7 +2339,7 @@ export declare namespace enums {
|
|
|
2225
2339
|
}
|
|
2226
2340
|
/**
|
|
2227
2341
|
* @name AccountLinkStatusEnum.AccountLinkStatus
|
|
2228
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
2342
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/AccountLinkStatusEnum.AccountLinkStatus
|
|
2229
2343
|
*/
|
|
2230
2344
|
enum AccountLinkStatus {
|
|
2231
2345
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -2239,7 +2353,7 @@ export declare namespace enums {
|
|
|
2239
2353
|
}
|
|
2240
2354
|
/**
|
|
2241
2355
|
* @name AdGroupAdPrimaryStatusEnum.AdGroupAdPrimaryStatus
|
|
2242
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
2356
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/AdGroupAdPrimaryStatusEnum.AdGroupAdPrimaryStatus
|
|
2243
2357
|
*/
|
|
2244
2358
|
enum AdGroupAdPrimaryStatus {
|
|
2245
2359
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -2253,7 +2367,7 @@ export declare namespace enums {
|
|
|
2253
2367
|
}
|
|
2254
2368
|
/**
|
|
2255
2369
|
* @name AdGroupAdPrimaryStatusReasonEnum.AdGroupAdPrimaryStatusReason
|
|
2256
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
2370
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/AdGroupAdPrimaryStatusReasonEnum.AdGroupAdPrimaryStatusReason
|
|
2257
2371
|
*/
|
|
2258
2372
|
enum AdGroupAdPrimaryStatusReason {
|
|
2259
2373
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -2276,7 +2390,7 @@ export declare namespace enums {
|
|
|
2276
2390
|
}
|
|
2277
2391
|
/**
|
|
2278
2392
|
* @name AdGroupAdRotationModeEnum.AdGroupAdRotationMode
|
|
2279
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
2393
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/AdGroupAdRotationModeEnum.AdGroupAdRotationMode
|
|
2280
2394
|
*/
|
|
2281
2395
|
enum AdGroupAdRotationMode {
|
|
2282
2396
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -2286,7 +2400,7 @@ export declare namespace enums {
|
|
|
2286
2400
|
}
|
|
2287
2401
|
/**
|
|
2288
2402
|
* @name AdGroupAdStatusEnum.AdGroupAdStatus
|
|
2289
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
2403
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/AdGroupAdStatusEnum.AdGroupAdStatus
|
|
2290
2404
|
*/
|
|
2291
2405
|
enum AdGroupAdStatus {
|
|
2292
2406
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -2297,7 +2411,7 @@ export declare namespace enums {
|
|
|
2297
2411
|
}
|
|
2298
2412
|
/**
|
|
2299
2413
|
* @name AdGroupCriterionApprovalStatusEnum.AdGroupCriterionApprovalStatus
|
|
2300
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
2414
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/AdGroupCriterionApprovalStatusEnum.AdGroupCriterionApprovalStatus
|
|
2301
2415
|
*/
|
|
2302
2416
|
enum AdGroupCriterionApprovalStatus {
|
|
2303
2417
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -2309,7 +2423,7 @@ export declare namespace enums {
|
|
|
2309
2423
|
}
|
|
2310
2424
|
/**
|
|
2311
2425
|
* @name AdGroupCriterionPrimaryStatusEnum.AdGroupCriterionPrimaryStatus
|
|
2312
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
2426
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/AdGroupCriterionPrimaryStatusEnum.AdGroupCriterionPrimaryStatus
|
|
2313
2427
|
*/
|
|
2314
2428
|
enum AdGroupCriterionPrimaryStatus {
|
|
2315
2429
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -2322,7 +2436,7 @@ export declare namespace enums {
|
|
|
2322
2436
|
}
|
|
2323
2437
|
/**
|
|
2324
2438
|
* @name AdGroupCriterionPrimaryStatusReasonEnum.AdGroupCriterionPrimaryStatusReason
|
|
2325
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
2439
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/AdGroupCriterionPrimaryStatusReasonEnum.AdGroupCriterionPrimaryStatusReason
|
|
2326
2440
|
*/
|
|
2327
2441
|
enum AdGroupCriterionPrimaryStatusReason {
|
|
2328
2442
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -2348,7 +2462,7 @@ export declare namespace enums {
|
|
|
2348
2462
|
}
|
|
2349
2463
|
/**
|
|
2350
2464
|
* @name AdGroupCriterionStatusEnum.AdGroupCriterionStatus
|
|
2351
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
2465
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/AdGroupCriterionStatusEnum.AdGroupCriterionStatus
|
|
2352
2466
|
*/
|
|
2353
2467
|
enum AdGroupCriterionStatus {
|
|
2354
2468
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -2359,7 +2473,7 @@ export declare namespace enums {
|
|
|
2359
2473
|
}
|
|
2360
2474
|
/**
|
|
2361
2475
|
* @name AdGroupPrimaryStatusEnum.AdGroupPrimaryStatus
|
|
2362
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
2476
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/AdGroupPrimaryStatusEnum.AdGroupPrimaryStatus
|
|
2363
2477
|
*/
|
|
2364
2478
|
enum AdGroupPrimaryStatus {
|
|
2365
2479
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -2373,7 +2487,7 @@ export declare namespace enums {
|
|
|
2373
2487
|
}
|
|
2374
2488
|
/**
|
|
2375
2489
|
* @name AdGroupPrimaryStatusReasonEnum.AdGroupPrimaryStatusReason
|
|
2376
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
2490
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/AdGroupPrimaryStatusReasonEnum.AdGroupPrimaryStatusReason
|
|
2377
2491
|
*/
|
|
2378
2492
|
enum AdGroupPrimaryStatusReason {
|
|
2379
2493
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -2397,7 +2511,7 @@ export declare namespace enums {
|
|
|
2397
2511
|
}
|
|
2398
2512
|
/**
|
|
2399
2513
|
* @name AdGroupStatusEnum.AdGroupStatus
|
|
2400
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
2514
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/AdGroupStatusEnum.AdGroupStatus
|
|
2401
2515
|
*/
|
|
2402
2516
|
enum AdGroupStatus {
|
|
2403
2517
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -2408,7 +2522,7 @@ export declare namespace enums {
|
|
|
2408
2522
|
}
|
|
2409
2523
|
/**
|
|
2410
2524
|
* @name AdGroupTypeEnum.AdGroupType
|
|
2411
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
2525
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/AdGroupTypeEnum.AdGroupType
|
|
2412
2526
|
*/
|
|
2413
2527
|
enum AdGroupType {
|
|
2414
2528
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -2433,7 +2547,7 @@ export declare namespace enums {
|
|
|
2433
2547
|
}
|
|
2434
2548
|
/**
|
|
2435
2549
|
* @name AdServingOptimizationStatusEnum.AdServingOptimizationStatus
|
|
2436
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
2550
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/AdServingOptimizationStatusEnum.AdServingOptimizationStatus
|
|
2437
2551
|
*/
|
|
2438
2552
|
enum AdServingOptimizationStatus {
|
|
2439
2553
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -2446,7 +2560,7 @@ export declare namespace enums {
|
|
|
2446
2560
|
}
|
|
2447
2561
|
/**
|
|
2448
2562
|
* @name AdStrengthEnum.AdStrength
|
|
2449
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
2563
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/AdStrengthEnum.AdStrength
|
|
2450
2564
|
*/
|
|
2451
2565
|
enum AdStrength {
|
|
2452
2566
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -2460,7 +2574,7 @@ export declare namespace enums {
|
|
|
2460
2574
|
}
|
|
2461
2575
|
/**
|
|
2462
2576
|
* @name AdStrengthActionItemTypeEnum.AdStrengthActionItemType
|
|
2463
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
2577
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/AdStrengthActionItemTypeEnum.AdStrengthActionItemType
|
|
2464
2578
|
*/
|
|
2465
2579
|
enum AdStrengthActionItemType {
|
|
2466
2580
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -2469,7 +2583,7 @@ export declare namespace enums {
|
|
|
2469
2583
|
}
|
|
2470
2584
|
/**
|
|
2471
2585
|
* @name AdTypeEnum.AdType
|
|
2472
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
2586
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/AdTypeEnum.AdType
|
|
2473
2587
|
*/
|
|
2474
2588
|
enum AdType {
|
|
2475
2589
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -2509,7 +2623,7 @@ export declare namespace enums {
|
|
|
2509
2623
|
}
|
|
2510
2624
|
/**
|
|
2511
2625
|
* @name AndroidPrivacyInteractionTypeEnum.AndroidPrivacyInteractionType
|
|
2512
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
2626
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/AndroidPrivacyInteractionTypeEnum.AndroidPrivacyInteractionType
|
|
2513
2627
|
*/
|
|
2514
2628
|
enum AndroidPrivacyInteractionType {
|
|
2515
2629
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -2520,7 +2634,7 @@ export declare namespace enums {
|
|
|
2520
2634
|
}
|
|
2521
2635
|
/**
|
|
2522
2636
|
* @name AndroidPrivacyNetworkTypeEnum.AndroidPrivacyNetworkType
|
|
2523
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
2637
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/AndroidPrivacyNetworkTypeEnum.AndroidPrivacyNetworkType
|
|
2524
2638
|
*/
|
|
2525
2639
|
enum AndroidPrivacyNetworkType {
|
|
2526
2640
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -2531,7 +2645,7 @@ export declare namespace enums {
|
|
|
2531
2645
|
}
|
|
2532
2646
|
/**
|
|
2533
2647
|
* @name AppBiddingGoalEnum.AppBiddingGoal
|
|
2534
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
2648
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/AppBiddingGoalEnum.AppBiddingGoal
|
|
2535
2649
|
*/
|
|
2536
2650
|
enum AppBiddingGoal {
|
|
2537
2651
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -2546,7 +2660,7 @@ export declare namespace enums {
|
|
|
2546
2660
|
}
|
|
2547
2661
|
/**
|
|
2548
2662
|
* @name AppCampaignAppStoreEnum.AppCampaignAppStore
|
|
2549
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
2663
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/AppCampaignAppStoreEnum.AppCampaignAppStore
|
|
2550
2664
|
*/
|
|
2551
2665
|
enum AppCampaignAppStore {
|
|
2552
2666
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -2556,7 +2670,7 @@ export declare namespace enums {
|
|
|
2556
2670
|
}
|
|
2557
2671
|
/**
|
|
2558
2672
|
* @name AppCampaignBiddingStrategyGoalTypeEnum.AppCampaignBiddingStrategyGoalType
|
|
2559
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
2673
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/AppCampaignBiddingStrategyGoalTypeEnum.AppCampaignBiddingStrategyGoalType
|
|
2560
2674
|
*/
|
|
2561
2675
|
enum AppCampaignBiddingStrategyGoalType {
|
|
2562
2676
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -2572,7 +2686,7 @@ export declare namespace enums {
|
|
|
2572
2686
|
}
|
|
2573
2687
|
/**
|
|
2574
2688
|
* @name AssetAutomationStatusEnum.AssetAutomationStatus
|
|
2575
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
2689
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/AssetAutomationStatusEnum.AssetAutomationStatus
|
|
2576
2690
|
*/
|
|
2577
2691
|
enum AssetAutomationStatus {
|
|
2578
2692
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -2582,7 +2696,7 @@ export declare namespace enums {
|
|
|
2582
2696
|
}
|
|
2583
2697
|
/**
|
|
2584
2698
|
* @name AssetAutomationTypeEnum.AssetAutomationType
|
|
2585
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
2699
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/AssetAutomationTypeEnum.AssetAutomationType
|
|
2586
2700
|
*/
|
|
2587
2701
|
enum AssetAutomationType {
|
|
2588
2702
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -2591,16 +2705,18 @@ export declare namespace enums {
|
|
|
2591
2705
|
GENERATE_VERTICAL_YOUTUBE_VIDEOS = 3,// GENERATE_VERTICAL_YOUTUBE_VIDEOS
|
|
2592
2706
|
GENERATE_SHORTER_YOUTUBE_VIDEOS = 4,// GENERATE_SHORTER_YOUTUBE_VIDEOS
|
|
2593
2707
|
GENERATE_LANDING_PAGE_PREVIEW = 5,// GENERATE_LANDING_PAGE_PREVIEW
|
|
2708
|
+
GENERATE_LANDING_PAGE_TEXT = 14,// GENERATE_LANDING_PAGE_TEXT
|
|
2594
2709
|
GENERATE_ENHANCED_YOUTUBE_VIDEOS = 6,// GENERATE_ENHANCED_YOUTUBE_VIDEOS
|
|
2595
2710
|
GENERATE_IMAGE_ENHANCEMENT = 7,// GENERATE_IMAGE_ENHANCEMENT
|
|
2596
2711
|
GENERATE_IMAGE_EXTRACTION = 9,// GENERATE_IMAGE_EXTRACTION
|
|
2597
2712
|
GENERATE_DESIGN_VERSIONS_FOR_IMAGES = 10,// GENERATE_DESIGN_VERSIONS_FOR_IMAGES
|
|
2598
2713
|
FINAL_URL_EXPANSION_TEXT_ASSET_AUTOMATION = 11,// FINAL_URL_EXPANSION_TEXT_ASSET_AUTOMATION
|
|
2599
|
-
GENERATE_VIDEOS_FROM_OTHER_ASSETS = 12
|
|
2714
|
+
GENERATE_VIDEOS_FROM_OTHER_ASSETS = 12,// GENERATE_VIDEOS_FROM_OTHER_ASSETS
|
|
2715
|
+
GENERATE_ANIMATED_IMAGES_FROM_OTHER_ASSETS = 13
|
|
2600
2716
|
}
|
|
2601
2717
|
/**
|
|
2602
2718
|
* @name AssetCoverageVideoAspectRatioRequirementEnum.AssetCoverageVideoAspectRatioRequirement
|
|
2603
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
2719
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/AssetCoverageVideoAspectRatioRequirementEnum.AssetCoverageVideoAspectRatioRequirement
|
|
2604
2720
|
*/
|
|
2605
2721
|
enum AssetCoverageVideoAspectRatioRequirement {
|
|
2606
2722
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -2611,7 +2727,7 @@ export declare namespace enums {
|
|
|
2611
2727
|
}
|
|
2612
2728
|
/**
|
|
2613
2729
|
* @name AssetFieldTypeEnum.AssetFieldType
|
|
2614
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
2730
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/AssetFieldTypeEnum.AssetFieldType
|
|
2615
2731
|
*/
|
|
2616
2732
|
enum AssetFieldType {
|
|
2617
2733
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -2650,11 +2766,12 @@ export declare namespace enums {
|
|
|
2650
2766
|
LANDING_PAGE_PREVIEW = 38,// LANDING_PAGE_PREVIEW
|
|
2651
2767
|
LONG_DESCRIPTION = 39,// LONG_DESCRIPTION
|
|
2652
2768
|
CALL_TO_ACTION = 40,// CALL_TO_ACTION
|
|
2653
|
-
CLASSIC_DISPLAY_IMAGE = 47
|
|
2769
|
+
CLASSIC_DISPLAY_IMAGE = 47,// CLASSIC_DISPLAY_IMAGE
|
|
2770
|
+
TEXT_DISCLAIMER = 48
|
|
2654
2771
|
}
|
|
2655
2772
|
/**
|
|
2656
2773
|
* @name AssetGroupPrimaryStatusEnum.AssetGroupPrimaryStatus
|
|
2657
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
2774
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/AssetGroupPrimaryStatusEnum.AssetGroupPrimaryStatus
|
|
2658
2775
|
*/
|
|
2659
2776
|
enum AssetGroupPrimaryStatus {
|
|
2660
2777
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -2668,7 +2785,7 @@ export declare namespace enums {
|
|
|
2668
2785
|
}
|
|
2669
2786
|
/**
|
|
2670
2787
|
* @name AssetGroupPrimaryStatusReasonEnum.AssetGroupPrimaryStatusReason
|
|
2671
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
2788
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/AssetGroupPrimaryStatusReasonEnum.AssetGroupPrimaryStatusReason
|
|
2672
2789
|
*/
|
|
2673
2790
|
enum AssetGroupPrimaryStatusReason {
|
|
2674
2791
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -2685,7 +2802,7 @@ export declare namespace enums {
|
|
|
2685
2802
|
}
|
|
2686
2803
|
/**
|
|
2687
2804
|
* @name AssetGroupSignalApprovalStatusEnum.AssetGroupSignalApprovalStatus
|
|
2688
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
2805
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/AssetGroupSignalApprovalStatusEnum.AssetGroupSignalApprovalStatus
|
|
2689
2806
|
*/
|
|
2690
2807
|
enum AssetGroupSignalApprovalStatus {
|
|
2691
2808
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -2697,7 +2814,7 @@ export declare namespace enums {
|
|
|
2697
2814
|
}
|
|
2698
2815
|
/**
|
|
2699
2816
|
* @name AssetGroupStatusEnum.AssetGroupStatus
|
|
2700
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
2817
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/AssetGroupStatusEnum.AssetGroupStatus
|
|
2701
2818
|
*/
|
|
2702
2819
|
enum AssetGroupStatus {
|
|
2703
2820
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -2708,7 +2825,7 @@ export declare namespace enums {
|
|
|
2708
2825
|
}
|
|
2709
2826
|
/**
|
|
2710
2827
|
* @name AssetLinkStatusEnum.AssetLinkStatus
|
|
2711
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
2828
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/AssetLinkStatusEnum.AssetLinkStatus
|
|
2712
2829
|
*/
|
|
2713
2830
|
enum AssetLinkStatus {
|
|
2714
2831
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -2719,7 +2836,7 @@ export declare namespace enums {
|
|
|
2719
2836
|
}
|
|
2720
2837
|
/**
|
|
2721
2838
|
* @name AssetOrientationEnum.AssetOrientation
|
|
2722
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
2839
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/AssetOrientationEnum.AssetOrientation
|
|
2723
2840
|
*/
|
|
2724
2841
|
enum AssetOrientation {
|
|
2725
2842
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -2730,7 +2847,7 @@ export declare namespace enums {
|
|
|
2730
2847
|
}
|
|
2731
2848
|
/**
|
|
2732
2849
|
* @name AssetSetAssetStatusEnum.AssetSetAssetStatus
|
|
2733
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
2850
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/AssetSetAssetStatusEnum.AssetSetAssetStatus
|
|
2734
2851
|
*/
|
|
2735
2852
|
enum AssetSetAssetStatus {
|
|
2736
2853
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -2740,7 +2857,7 @@ export declare namespace enums {
|
|
|
2740
2857
|
}
|
|
2741
2858
|
/**
|
|
2742
2859
|
* @name AssetSetLinkStatusEnum.AssetSetLinkStatus
|
|
2743
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
2860
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/AssetSetLinkStatusEnum.AssetSetLinkStatus
|
|
2744
2861
|
*/
|
|
2745
2862
|
enum AssetSetLinkStatus {
|
|
2746
2863
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -2750,7 +2867,7 @@ export declare namespace enums {
|
|
|
2750
2867
|
}
|
|
2751
2868
|
/**
|
|
2752
2869
|
* @name AssetSetStatusEnum.AssetSetStatus
|
|
2753
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
2870
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/AssetSetStatusEnum.AssetSetStatus
|
|
2754
2871
|
*/
|
|
2755
2872
|
enum AssetSetStatus {
|
|
2756
2873
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -2760,7 +2877,7 @@ export declare namespace enums {
|
|
|
2760
2877
|
}
|
|
2761
2878
|
/**
|
|
2762
2879
|
* @name AssetSetTypeEnum.AssetSetType
|
|
2763
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
2880
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/AssetSetTypeEnum.AssetSetType
|
|
2764
2881
|
*/
|
|
2765
2882
|
enum AssetSetType {
|
|
2766
2883
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -2784,7 +2901,7 @@ export declare namespace enums {
|
|
|
2784
2901
|
}
|
|
2785
2902
|
/**
|
|
2786
2903
|
* @name AssetSourceEnum.AssetSource
|
|
2787
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
2904
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/AssetSourceEnum.AssetSource
|
|
2788
2905
|
*/
|
|
2789
2906
|
enum AssetSource {
|
|
2790
2907
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -2794,7 +2911,7 @@ export declare namespace enums {
|
|
|
2794
2911
|
}
|
|
2795
2912
|
/**
|
|
2796
2913
|
* @name AssetTypeEnum.AssetType
|
|
2797
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
2914
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/AssetTypeEnum.AssetType
|
|
2798
2915
|
*/
|
|
2799
2916
|
enum AssetType {
|
|
2800
2917
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -2832,7 +2949,7 @@ export declare namespace enums {
|
|
|
2832
2949
|
}
|
|
2833
2950
|
/**
|
|
2834
2951
|
* @name AsyncActionStatusEnum.AsyncActionStatus
|
|
2835
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
2952
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/AsyncActionStatusEnum.AsyncActionStatus
|
|
2836
2953
|
*/
|
|
2837
2954
|
enum AsyncActionStatus {
|
|
2838
2955
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -2845,7 +2962,7 @@ export declare namespace enums {
|
|
|
2845
2962
|
}
|
|
2846
2963
|
/**
|
|
2847
2964
|
* @name AttributionModelEnum.AttributionModel
|
|
2848
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
2965
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/AttributionModelEnum.AttributionModel
|
|
2849
2966
|
*/
|
|
2850
2967
|
enum AttributionModel {
|
|
2851
2968
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -2860,7 +2977,7 @@ export declare namespace enums {
|
|
|
2860
2977
|
}
|
|
2861
2978
|
/**
|
|
2862
2979
|
* @name AudienceInsightsMarketingObjectiveEnum.AudienceInsightsMarketingObjective
|
|
2863
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
2980
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/AudienceInsightsMarketingObjectiveEnum.AudienceInsightsMarketingObjective
|
|
2864
2981
|
*/
|
|
2865
2982
|
enum AudienceInsightsMarketingObjective {
|
|
2866
2983
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -2871,7 +2988,7 @@ export declare namespace enums {
|
|
|
2871
2988
|
}
|
|
2872
2989
|
/**
|
|
2873
2990
|
* @name AudienceScopeEnum.AudienceScope
|
|
2874
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
2991
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/AudienceScopeEnum.AudienceScope
|
|
2875
2992
|
*/
|
|
2876
2993
|
enum AudienceScope {
|
|
2877
2994
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -2881,7 +2998,7 @@ export declare namespace enums {
|
|
|
2881
2998
|
}
|
|
2882
2999
|
/**
|
|
2883
3000
|
* @name AudienceStatusEnum.AudienceStatus
|
|
2884
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
3001
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/AudienceStatusEnum.AudienceStatus
|
|
2885
3002
|
*/
|
|
2886
3003
|
enum AudienceStatus {
|
|
2887
3004
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -2891,7 +3008,7 @@ export declare namespace enums {
|
|
|
2891
3008
|
}
|
|
2892
3009
|
/**
|
|
2893
3010
|
* @name BatchJobStatusEnum.BatchJobStatus
|
|
2894
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
3011
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/BatchJobStatusEnum.BatchJobStatus
|
|
2895
3012
|
*/
|
|
2896
3013
|
enum BatchJobStatus {
|
|
2897
3014
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -2902,7 +3019,7 @@ export declare namespace enums {
|
|
|
2902
3019
|
}
|
|
2903
3020
|
/**
|
|
2904
3021
|
* @name BenchmarksMarketingObjectiveEnum.BenchmarksMarketingObjective
|
|
2905
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
3022
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/BenchmarksMarketingObjectiveEnum.BenchmarksMarketingObjective
|
|
2906
3023
|
*/
|
|
2907
3024
|
enum BenchmarksMarketingObjective {
|
|
2908
3025
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -2913,16 +3030,17 @@ export declare namespace enums {
|
|
|
2913
3030
|
}
|
|
2914
3031
|
/**
|
|
2915
3032
|
* @name BenchmarksSourceTypeEnum.BenchmarksSourceType
|
|
2916
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
3033
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/BenchmarksSourceTypeEnum.BenchmarksSourceType
|
|
2917
3034
|
*/
|
|
2918
3035
|
enum BenchmarksSourceType {
|
|
2919
3036
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
2920
3037
|
UNKNOWN = 1,// UNKNOWN
|
|
2921
|
-
INDUSTRY_VERTICAL = 2
|
|
3038
|
+
INDUSTRY_VERTICAL = 2,// INDUSTRY_VERTICAL
|
|
3039
|
+
CATEGORY = 3
|
|
2922
3040
|
}
|
|
2923
3041
|
/**
|
|
2924
3042
|
* @name BenchmarksTimeGranularityEnum.BenchmarksTimeGranularity
|
|
2925
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
3043
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/BenchmarksTimeGranularityEnum.BenchmarksTimeGranularity
|
|
2926
3044
|
*/
|
|
2927
3045
|
enum BenchmarksTimeGranularity {
|
|
2928
3046
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -2933,7 +3051,7 @@ export declare namespace enums {
|
|
|
2933
3051
|
}
|
|
2934
3052
|
/**
|
|
2935
3053
|
* @name BidModifierSourceEnum.BidModifierSource
|
|
2936
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
3054
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/BidModifierSourceEnum.BidModifierSource
|
|
2937
3055
|
*/
|
|
2938
3056
|
enum BidModifierSource {
|
|
2939
3057
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -2943,7 +3061,7 @@ export declare namespace enums {
|
|
|
2943
3061
|
}
|
|
2944
3062
|
/**
|
|
2945
3063
|
* @name BiddingSourceEnum.BiddingSource
|
|
2946
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
3064
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/BiddingSourceEnum.BiddingSource
|
|
2947
3065
|
*/
|
|
2948
3066
|
enum BiddingSource {
|
|
2949
3067
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -2954,7 +3072,7 @@ export declare namespace enums {
|
|
|
2954
3072
|
}
|
|
2955
3073
|
/**
|
|
2956
3074
|
* @name BiddingStrategyStatusEnum.BiddingStrategyStatus
|
|
2957
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
3075
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/BiddingStrategyStatusEnum.BiddingStrategyStatus
|
|
2958
3076
|
*/
|
|
2959
3077
|
enum BiddingStrategyStatus {
|
|
2960
3078
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -2964,7 +3082,7 @@ export declare namespace enums {
|
|
|
2964
3082
|
}
|
|
2965
3083
|
/**
|
|
2966
3084
|
* @name BiddingStrategySystemStatusEnum.BiddingStrategySystemStatus
|
|
2967
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
3085
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/BiddingStrategySystemStatusEnum.BiddingStrategySystemStatus
|
|
2968
3086
|
*/
|
|
2969
3087
|
enum BiddingStrategySystemStatus {
|
|
2970
3088
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -2997,7 +3115,7 @@ export declare namespace enums {
|
|
|
2997
3115
|
}
|
|
2998
3116
|
/**
|
|
2999
3117
|
* @name BiddingStrategyTypeEnum.BiddingStrategyType
|
|
3000
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
3118
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/BiddingStrategyTypeEnum.BiddingStrategyType
|
|
3001
3119
|
*/
|
|
3002
3120
|
enum BiddingStrategyType {
|
|
3003
3121
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -3026,7 +3144,7 @@ export declare namespace enums {
|
|
|
3026
3144
|
}
|
|
3027
3145
|
/**
|
|
3028
3146
|
* @name BillingSetupStatusEnum.BillingSetupStatus
|
|
3029
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
3147
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/BillingSetupStatusEnum.BillingSetupStatus
|
|
3030
3148
|
*/
|
|
3031
3149
|
enum BillingSetupStatus {
|
|
3032
3150
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -3038,7 +3156,7 @@ export declare namespace enums {
|
|
|
3038
3156
|
}
|
|
3039
3157
|
/**
|
|
3040
3158
|
* @name BookingStatusEnum.BookingStatus
|
|
3041
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
3159
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/BookingStatusEnum.BookingStatus
|
|
3042
3160
|
*/
|
|
3043
3161
|
enum BookingStatus {
|
|
3044
3162
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -3051,7 +3169,7 @@ export declare namespace enums {
|
|
|
3051
3169
|
}
|
|
3052
3170
|
/**
|
|
3053
3171
|
* @name BrandSafetySuitabilityEnum.BrandSafetySuitability
|
|
3054
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
3172
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/BrandSafetySuitabilityEnum.BrandSafetySuitability
|
|
3055
3173
|
*/
|
|
3056
3174
|
enum BrandSafetySuitability {
|
|
3057
3175
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -3062,7 +3180,7 @@ export declare namespace enums {
|
|
|
3062
3180
|
}
|
|
3063
3181
|
/**
|
|
3064
3182
|
* @name BudgetDeliveryMethodEnum.BudgetDeliveryMethod
|
|
3065
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
3183
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/BudgetDeliveryMethodEnum.BudgetDeliveryMethod
|
|
3066
3184
|
*/
|
|
3067
3185
|
enum BudgetDeliveryMethod {
|
|
3068
3186
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -3072,7 +3190,7 @@ export declare namespace enums {
|
|
|
3072
3190
|
}
|
|
3073
3191
|
/**
|
|
3074
3192
|
* @name BudgetPeriodEnum.BudgetPeriod
|
|
3075
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
3193
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/BudgetPeriodEnum.BudgetPeriod
|
|
3076
3194
|
*/
|
|
3077
3195
|
enum BudgetPeriod {
|
|
3078
3196
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -3082,7 +3200,7 @@ export declare namespace enums {
|
|
|
3082
3200
|
}
|
|
3083
3201
|
/**
|
|
3084
3202
|
* @name BudgetStatusEnum.BudgetStatus
|
|
3085
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
3203
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/BudgetStatusEnum.BudgetStatus
|
|
3086
3204
|
*/
|
|
3087
3205
|
enum BudgetStatus {
|
|
3088
3206
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -3092,7 +3210,7 @@ export declare namespace enums {
|
|
|
3092
3210
|
}
|
|
3093
3211
|
/**
|
|
3094
3212
|
* @name BudgetTypeEnum.BudgetType
|
|
3095
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
3213
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/BudgetTypeEnum.BudgetType
|
|
3096
3214
|
*/
|
|
3097
3215
|
enum BudgetType {
|
|
3098
3216
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -3104,7 +3222,7 @@ export declare namespace enums {
|
|
|
3104
3222
|
}
|
|
3105
3223
|
/**
|
|
3106
3224
|
* @name CallTrackingDisplayLocationEnum.CallTrackingDisplayLocation
|
|
3107
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
3225
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/CallTrackingDisplayLocationEnum.CallTrackingDisplayLocation
|
|
3108
3226
|
*/
|
|
3109
3227
|
enum CallTrackingDisplayLocation {
|
|
3110
3228
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -3114,7 +3232,7 @@ export declare namespace enums {
|
|
|
3114
3232
|
}
|
|
3115
3233
|
/**
|
|
3116
3234
|
* @name CallTypeEnum.CallType
|
|
3117
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
3235
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/CallTypeEnum.CallType
|
|
3118
3236
|
*/
|
|
3119
3237
|
enum CallType {
|
|
3120
3238
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -3124,7 +3242,7 @@ export declare namespace enums {
|
|
|
3124
3242
|
}
|
|
3125
3243
|
/**
|
|
3126
3244
|
* @name CampaignCriterionStatusEnum.CampaignCriterionStatus
|
|
3127
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
3245
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/CampaignCriterionStatusEnum.CampaignCriterionStatus
|
|
3128
3246
|
*/
|
|
3129
3247
|
enum CampaignCriterionStatus {
|
|
3130
3248
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -3135,7 +3253,7 @@ export declare namespace enums {
|
|
|
3135
3253
|
}
|
|
3136
3254
|
/**
|
|
3137
3255
|
* @name CampaignDraftStatusEnum.CampaignDraftStatus
|
|
3138
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
3256
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/CampaignDraftStatusEnum.CampaignDraftStatus
|
|
3139
3257
|
*/
|
|
3140
3258
|
enum CampaignDraftStatus {
|
|
3141
3259
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -3148,7 +3266,7 @@ export declare namespace enums {
|
|
|
3148
3266
|
}
|
|
3149
3267
|
/**
|
|
3150
3268
|
* @name CampaignExperimentTypeEnum.CampaignExperimentType
|
|
3151
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
3269
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/CampaignExperimentTypeEnum.CampaignExperimentType
|
|
3152
3270
|
*/
|
|
3153
3271
|
enum CampaignExperimentType {
|
|
3154
3272
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -3159,7 +3277,7 @@ export declare namespace enums {
|
|
|
3159
3277
|
}
|
|
3160
3278
|
/**
|
|
3161
3279
|
* @name CampaignGroupStatusEnum.CampaignGroupStatus
|
|
3162
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
3280
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/CampaignGroupStatusEnum.CampaignGroupStatus
|
|
3163
3281
|
*/
|
|
3164
3282
|
enum CampaignGroupStatus {
|
|
3165
3283
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -3169,7 +3287,7 @@ export declare namespace enums {
|
|
|
3169
3287
|
}
|
|
3170
3288
|
/**
|
|
3171
3289
|
* @name CampaignKeywordMatchTypeEnum.CampaignKeywordMatchType
|
|
3172
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
3290
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/CampaignKeywordMatchTypeEnum.CampaignKeywordMatchType
|
|
3173
3291
|
*/
|
|
3174
3292
|
enum CampaignKeywordMatchType {
|
|
3175
3293
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -3178,7 +3296,7 @@ export declare namespace enums {
|
|
|
3178
3296
|
}
|
|
3179
3297
|
/**
|
|
3180
3298
|
* @name CampaignPrimaryStatusEnum.CampaignPrimaryStatus
|
|
3181
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
3299
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/CampaignPrimaryStatusEnum.CampaignPrimaryStatus
|
|
3182
3300
|
*/
|
|
3183
3301
|
enum CampaignPrimaryStatus {
|
|
3184
3302
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -3195,7 +3313,7 @@ export declare namespace enums {
|
|
|
3195
3313
|
}
|
|
3196
3314
|
/**
|
|
3197
3315
|
* @name CampaignPrimaryStatusReasonEnum.CampaignPrimaryStatusReason
|
|
3198
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
3316
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/CampaignPrimaryStatusReasonEnum.CampaignPrimaryStatusReason
|
|
3199
3317
|
*/
|
|
3200
3318
|
enum CampaignPrimaryStatusReason {
|
|
3201
3319
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -3245,7 +3363,7 @@ export declare namespace enums {
|
|
|
3245
3363
|
}
|
|
3246
3364
|
/**
|
|
3247
3365
|
* @name CampaignServingStatusEnum.CampaignServingStatus
|
|
3248
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
3366
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/CampaignServingStatusEnum.CampaignServingStatus
|
|
3249
3367
|
*/
|
|
3250
3368
|
enum CampaignServingStatus {
|
|
3251
3369
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -3258,7 +3376,7 @@ export declare namespace enums {
|
|
|
3258
3376
|
}
|
|
3259
3377
|
/**
|
|
3260
3378
|
* @name CampaignSharedSetStatusEnum.CampaignSharedSetStatus
|
|
3261
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
3379
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/CampaignSharedSetStatusEnum.CampaignSharedSetStatus
|
|
3262
3380
|
*/
|
|
3263
3381
|
enum CampaignSharedSetStatus {
|
|
3264
3382
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -3268,7 +3386,7 @@ export declare namespace enums {
|
|
|
3268
3386
|
}
|
|
3269
3387
|
/**
|
|
3270
3388
|
* @name CampaignStatusEnum.CampaignStatus
|
|
3271
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
3389
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/CampaignStatusEnum.CampaignStatus
|
|
3272
3390
|
*/
|
|
3273
3391
|
enum CampaignStatus {
|
|
3274
3392
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -3279,7 +3397,7 @@ export declare namespace enums {
|
|
|
3279
3397
|
}
|
|
3280
3398
|
/**
|
|
3281
3399
|
* @name ChangeClientTypeEnum.ChangeClientType
|
|
3282
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
3400
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/ChangeClientTypeEnum.ChangeClientType
|
|
3283
3401
|
*/
|
|
3284
3402
|
enum ChangeClientType {
|
|
3285
3403
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -3300,7 +3418,7 @@ export declare namespace enums {
|
|
|
3300
3418
|
}
|
|
3301
3419
|
/**
|
|
3302
3420
|
* @name ChangeEventResourceTypeEnum.ChangeEventResourceType
|
|
3303
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
3421
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/ChangeEventResourceTypeEnum.ChangeEventResourceType
|
|
3304
3422
|
*/
|
|
3305
3423
|
enum ChangeEventResourceType {
|
|
3306
3424
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -3327,7 +3445,7 @@ export declare namespace enums {
|
|
|
3327
3445
|
}
|
|
3328
3446
|
/**
|
|
3329
3447
|
* @name ChangeStatusOperationEnum.ChangeStatusOperation
|
|
3330
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
3448
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/ChangeStatusOperationEnum.ChangeStatusOperation
|
|
3331
3449
|
*/
|
|
3332
3450
|
enum ChangeStatusOperation {
|
|
3333
3451
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -3338,7 +3456,7 @@ export declare namespace enums {
|
|
|
3338
3456
|
}
|
|
3339
3457
|
/**
|
|
3340
3458
|
* @name ChangeStatusResourceTypeEnum.ChangeStatusResourceType
|
|
3341
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
3459
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/ChangeStatusResourceTypeEnum.ChangeStatusResourceType
|
|
3342
3460
|
*/
|
|
3343
3461
|
enum ChangeStatusResourceType {
|
|
3344
3462
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -3367,7 +3485,7 @@ export declare namespace enums {
|
|
|
3367
3485
|
}
|
|
3368
3486
|
/**
|
|
3369
3487
|
* @name CombinedAudienceStatusEnum.CombinedAudienceStatus
|
|
3370
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
3488
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/CombinedAudienceStatusEnum.CombinedAudienceStatus
|
|
3371
3489
|
*/
|
|
3372
3490
|
enum CombinedAudienceStatus {
|
|
3373
3491
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -3375,9 +3493,19 @@ export declare namespace enums {
|
|
|
3375
3493
|
ENABLED = 2,// ENABLED
|
|
3376
3494
|
REMOVED = 3
|
|
3377
3495
|
}
|
|
3496
|
+
/**
|
|
3497
|
+
* @name ContentCreatorInsightsSupplementalDataEnum.ContentCreatorInsightsSupplementalData
|
|
3498
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/ContentCreatorInsightsSupplementalDataEnum.ContentCreatorInsightsSupplementalData
|
|
3499
|
+
*/
|
|
3500
|
+
enum ContentCreatorInsightsSupplementalData {
|
|
3501
|
+
UNSPECIFIED = 0,// UNSPECIFIED
|
|
3502
|
+
UNKNOWN = 1,// UNKNOWN
|
|
3503
|
+
BRAND_SENTIMENT_DATA = 2,// BRAND_SENTIMENT_DATA
|
|
3504
|
+
LOCAL_CREATOR_DATA = 3
|
|
3505
|
+
}
|
|
3378
3506
|
/**
|
|
3379
3507
|
* @name ConversionActionCountingTypeEnum.ConversionActionCountingType
|
|
3380
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
3508
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/ConversionActionCountingTypeEnum.ConversionActionCountingType
|
|
3381
3509
|
*/
|
|
3382
3510
|
enum ConversionActionCountingType {
|
|
3383
3511
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -3387,7 +3515,7 @@ export declare namespace enums {
|
|
|
3387
3515
|
}
|
|
3388
3516
|
/**
|
|
3389
3517
|
* @name ConversionActionStatusEnum.ConversionActionStatus
|
|
3390
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
3518
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/ConversionActionStatusEnum.ConversionActionStatus
|
|
3391
3519
|
*/
|
|
3392
3520
|
enum ConversionActionStatus {
|
|
3393
3521
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -3398,7 +3526,7 @@ export declare namespace enums {
|
|
|
3398
3526
|
}
|
|
3399
3527
|
/**
|
|
3400
3528
|
* @name ConversionActionTypeEnum.ConversionActionType
|
|
3401
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
3529
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/ConversionActionTypeEnum.ConversionActionType
|
|
3402
3530
|
*/
|
|
3403
3531
|
enum ConversionActionType {
|
|
3404
3532
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -3451,11 +3579,12 @@ export declare namespace enums {
|
|
|
3451
3579
|
FIREBASE_ANDROID_CLOSE_CONVERT_LEAD = 47,// FIREBASE_ANDROID_CLOSE_CONVERT_LEAD
|
|
3452
3580
|
FIREBASE_IOS_GENERATE_LEAD = 48,// FIREBASE_IOS_GENERATE_LEAD
|
|
3453
3581
|
FIREBASE_IOS_QUALIFY_LEAD = 49,// FIREBASE_IOS_QUALIFY_LEAD
|
|
3454
|
-
FIREBASE_IOS_CLOSE_CONVERT_LEAD = 50
|
|
3582
|
+
FIREBASE_IOS_CLOSE_CONVERT_LEAD = 50,// FIREBASE_IOS_CLOSE_CONVERT_LEAD
|
|
3583
|
+
LOCAL_SERVICES_ADS = 51
|
|
3455
3584
|
}
|
|
3456
3585
|
/**
|
|
3457
3586
|
* @name ConversionAdjustmentTypeEnum.ConversionAdjustmentType
|
|
3458
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
3587
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/ConversionAdjustmentTypeEnum.ConversionAdjustmentType
|
|
3459
3588
|
*/
|
|
3460
3589
|
enum ConversionAdjustmentType {
|
|
3461
3590
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -3466,7 +3595,7 @@ export declare namespace enums {
|
|
|
3466
3595
|
}
|
|
3467
3596
|
/**
|
|
3468
3597
|
* @name ConversionCustomVariableStatusEnum.ConversionCustomVariableStatus
|
|
3469
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
3598
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/ConversionCustomVariableStatusEnum.ConversionCustomVariableStatus
|
|
3470
3599
|
*/
|
|
3471
3600
|
enum ConversionCustomVariableStatus {
|
|
3472
3601
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -3477,7 +3606,7 @@ export declare namespace enums {
|
|
|
3477
3606
|
}
|
|
3478
3607
|
/**
|
|
3479
3608
|
* @name ConversionCustomerTypeEnum.ConversionCustomerType
|
|
3480
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
3609
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/ConversionCustomerTypeEnum.ConversionCustomerType
|
|
3481
3610
|
*/
|
|
3482
3611
|
enum ConversionCustomerType {
|
|
3483
3612
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -3487,7 +3616,7 @@ export declare namespace enums {
|
|
|
3487
3616
|
}
|
|
3488
3617
|
/**
|
|
3489
3618
|
* @name ConversionEnvironmentEnum.ConversionEnvironment
|
|
3490
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
3619
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/ConversionEnvironmentEnum.ConversionEnvironment
|
|
3491
3620
|
*/
|
|
3492
3621
|
enum ConversionEnvironment {
|
|
3493
3622
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -3495,23 +3624,9 @@ export declare namespace enums {
|
|
|
3495
3624
|
APP = 2,// APP
|
|
3496
3625
|
WEB = 3
|
|
3497
3626
|
}
|
|
3498
|
-
/**
|
|
3499
|
-
* @name ConversionOriginEnum.ConversionOrigin
|
|
3500
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/v24/ConversionOriginEnum.ConversionOrigin
|
|
3501
|
-
*/
|
|
3502
|
-
enum ConversionOrigin {
|
|
3503
|
-
UNSPECIFIED = 0,// UNSPECIFIED
|
|
3504
|
-
UNKNOWN = 1,// UNKNOWN
|
|
3505
|
-
WEBSITE = 2,// WEBSITE
|
|
3506
|
-
GOOGLE_HOSTED = 3,// GOOGLE_HOSTED
|
|
3507
|
-
APP = 4,// APP
|
|
3508
|
-
CALL_FROM_ADS = 5,// CALL_FROM_ADS
|
|
3509
|
-
STORE = 6,// STORE
|
|
3510
|
-
YOUTUBE_HOSTED = 7
|
|
3511
|
-
}
|
|
3512
3627
|
/**
|
|
3513
3628
|
* @name ConversionTrackingStatusEnum.ConversionTrackingStatus
|
|
3514
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
3629
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/ConversionTrackingStatusEnum.ConversionTrackingStatus
|
|
3515
3630
|
*/
|
|
3516
3631
|
enum ConversionTrackingStatus {
|
|
3517
3632
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -3523,7 +3638,7 @@ export declare namespace enums {
|
|
|
3523
3638
|
}
|
|
3524
3639
|
/**
|
|
3525
3640
|
* @name ConversionValueRuleSetStatusEnum.ConversionValueRuleSetStatus
|
|
3526
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
3641
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/ConversionValueRuleSetStatusEnum.ConversionValueRuleSetStatus
|
|
3527
3642
|
*/
|
|
3528
3643
|
enum ConversionValueRuleSetStatus {
|
|
3529
3644
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -3534,7 +3649,7 @@ export declare namespace enums {
|
|
|
3534
3649
|
}
|
|
3535
3650
|
/**
|
|
3536
3651
|
* @name ConversionValueRuleStatusEnum.ConversionValueRuleStatus
|
|
3537
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
3652
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/ConversionValueRuleStatusEnum.ConversionValueRuleStatus
|
|
3538
3653
|
*/
|
|
3539
3654
|
enum ConversionValueRuleStatus {
|
|
3540
3655
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -3545,7 +3660,7 @@ export declare namespace enums {
|
|
|
3545
3660
|
}
|
|
3546
3661
|
/**
|
|
3547
3662
|
* @name CriterionSystemServingStatusEnum.CriterionSystemServingStatus
|
|
3548
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
3663
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/CriterionSystemServingStatusEnum.CriterionSystemServingStatus
|
|
3549
3664
|
*/
|
|
3550
3665
|
enum CriterionSystemServingStatus {
|
|
3551
3666
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -3555,7 +3670,7 @@ export declare namespace enums {
|
|
|
3555
3670
|
}
|
|
3556
3671
|
/**
|
|
3557
3672
|
* @name CriterionTypeEnum.CriterionType
|
|
3558
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
3673
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/CriterionTypeEnum.CriterionType
|
|
3559
3674
|
*/
|
|
3560
3675
|
enum CriterionType {
|
|
3561
3676
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -3605,12 +3720,13 @@ export declare namespace enums {
|
|
|
3605
3720
|
PLACEMENT_LIST = 44,// PLACEMENT_LIST
|
|
3606
3721
|
VERTICAL_ADS_ITEM_GROUP_RULE_LIST = 45,// VERTICAL_ADS_ITEM_GROUP_RULE_LIST
|
|
3607
3722
|
VERTICAL_ADS_ITEM_GROUP_RULE = 46,// VERTICAL_ADS_ITEM_GROUP_RULE
|
|
3723
|
+
VERTICAL_ADS_ITEM_BID = 47,// VERTICAL_ADS_ITEM_BID
|
|
3608
3724
|
RETAIL_FILTER_BUNDLE = 180,// RETAIL_FILTER_BUNDLE
|
|
3609
3725
|
RETAIL_FILTER = 181
|
|
3610
3726
|
}
|
|
3611
3727
|
/**
|
|
3612
3728
|
* @name CustomAudienceMemberTypeEnum.CustomAudienceMemberType
|
|
3613
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
3729
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/CustomAudienceMemberTypeEnum.CustomAudienceMemberType
|
|
3614
3730
|
*/
|
|
3615
3731
|
enum CustomAudienceMemberType {
|
|
3616
3732
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -3622,7 +3738,7 @@ export declare namespace enums {
|
|
|
3622
3738
|
}
|
|
3623
3739
|
/**
|
|
3624
3740
|
* @name CustomAudienceStatusEnum.CustomAudienceStatus
|
|
3625
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
3741
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/CustomAudienceStatusEnum.CustomAudienceStatus
|
|
3626
3742
|
*/
|
|
3627
3743
|
enum CustomAudienceStatus {
|
|
3628
3744
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -3632,7 +3748,7 @@ export declare namespace enums {
|
|
|
3632
3748
|
}
|
|
3633
3749
|
/**
|
|
3634
3750
|
* @name CustomAudienceTypeEnum.CustomAudienceType
|
|
3635
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
3751
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/CustomAudienceTypeEnum.CustomAudienceType
|
|
3636
3752
|
*/
|
|
3637
3753
|
enum CustomAudienceType {
|
|
3638
3754
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -3644,7 +3760,7 @@ export declare namespace enums {
|
|
|
3644
3760
|
}
|
|
3645
3761
|
/**
|
|
3646
3762
|
* @name CustomConversionGoalStatusEnum.CustomConversionGoalStatus
|
|
3647
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
3763
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/CustomConversionGoalStatusEnum.CustomConversionGoalStatus
|
|
3648
3764
|
*/
|
|
3649
3765
|
enum CustomConversionGoalStatus {
|
|
3650
3766
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -3654,7 +3770,7 @@ export declare namespace enums {
|
|
|
3654
3770
|
}
|
|
3655
3771
|
/**
|
|
3656
3772
|
* @name CustomInterestMemberTypeEnum.CustomInterestMemberType
|
|
3657
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
3773
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/CustomInterestMemberTypeEnum.CustomInterestMemberType
|
|
3658
3774
|
*/
|
|
3659
3775
|
enum CustomInterestMemberType {
|
|
3660
3776
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -3664,7 +3780,7 @@ export declare namespace enums {
|
|
|
3664
3780
|
}
|
|
3665
3781
|
/**
|
|
3666
3782
|
* @name CustomInterestStatusEnum.CustomInterestStatus
|
|
3667
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
3783
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/CustomInterestStatusEnum.CustomInterestStatus
|
|
3668
3784
|
*/
|
|
3669
3785
|
enum CustomInterestStatus {
|
|
3670
3786
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -3674,7 +3790,7 @@ export declare namespace enums {
|
|
|
3674
3790
|
}
|
|
3675
3791
|
/**
|
|
3676
3792
|
* @name CustomInterestTypeEnum.CustomInterestType
|
|
3677
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
3793
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/CustomInterestTypeEnum.CustomInterestType
|
|
3678
3794
|
*/
|
|
3679
3795
|
enum CustomInterestType {
|
|
3680
3796
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -3683,19 +3799,22 @@ export declare namespace enums {
|
|
|
3683
3799
|
CUSTOM_INTENT = 3
|
|
3684
3800
|
}
|
|
3685
3801
|
/**
|
|
3686
|
-
* @name
|
|
3687
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
3802
|
+
* @name CustomerLifecycleOptimizationGoalSubTypeEnum.CustomerLifecycleOptimizationGoalSubType
|
|
3803
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/CustomerLifecycleOptimizationGoalSubTypeEnum.CustomerLifecycleOptimizationGoalSubType
|
|
3688
3804
|
*/
|
|
3689
|
-
enum
|
|
3805
|
+
enum CustomerLifecycleOptimizationGoalSubType {
|
|
3690
3806
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
3691
3807
|
UNKNOWN = 1,// UNKNOWN
|
|
3692
|
-
|
|
3693
|
-
|
|
3694
|
-
|
|
3808
|
+
NEW_CUSTOMER_ACQUISITION_VALUE = 2,// NEW_CUSTOMER_ACQUISITION_VALUE
|
|
3809
|
+
NEW_CUSTOMER_ACQUISITION_ONLY = 3,// NEW_CUSTOMER_ACQUISITION_ONLY
|
|
3810
|
+
CUSTOMER_RETENTION_VALUE = 4,// CUSTOMER_RETENTION_VALUE
|
|
3811
|
+
CUSTOMER_RETENTION_ONLY = 5,// CUSTOMER_RETENTION_ONLY
|
|
3812
|
+
LOYALTY_RETENTION_VALUE = 7,// LOYALTY_RETENTION_VALUE
|
|
3813
|
+
LOYALTY_RETENTION_BENEFITS = 8
|
|
3695
3814
|
}
|
|
3696
3815
|
/**
|
|
3697
3816
|
* @name CustomerPayPerConversionEligibilityFailureReasonEnum.CustomerPayPerConversionEligibilityFailureReason
|
|
3698
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
3817
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/CustomerPayPerConversionEligibilityFailureReasonEnum.CustomerPayPerConversionEligibilityFailureReason
|
|
3699
3818
|
*/
|
|
3700
3819
|
enum CustomerPayPerConversionEligibilityFailureReason {
|
|
3701
3820
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -3710,7 +3829,7 @@ export declare namespace enums {
|
|
|
3710
3829
|
}
|
|
3711
3830
|
/**
|
|
3712
3831
|
* @name CustomerStatusEnum.CustomerStatus
|
|
3713
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
3832
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/CustomerStatusEnum.CustomerStatus
|
|
3714
3833
|
*/
|
|
3715
3834
|
enum CustomerStatus {
|
|
3716
3835
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -3722,7 +3841,7 @@ export declare namespace enums {
|
|
|
3722
3841
|
}
|
|
3723
3842
|
/**
|
|
3724
3843
|
* @name CustomizerAttributeStatusEnum.CustomizerAttributeStatus
|
|
3725
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
3844
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/CustomizerAttributeStatusEnum.CustomizerAttributeStatus
|
|
3726
3845
|
*/
|
|
3727
3846
|
enum CustomizerAttributeStatus {
|
|
3728
3847
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -3732,7 +3851,7 @@ export declare namespace enums {
|
|
|
3732
3851
|
}
|
|
3733
3852
|
/**
|
|
3734
3853
|
* @name CustomizerValueStatusEnum.CustomizerValueStatus
|
|
3735
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
3854
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/CustomizerValueStatusEnum.CustomizerValueStatus
|
|
3736
3855
|
*/
|
|
3737
3856
|
enum CustomizerValueStatus {
|
|
3738
3857
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -3742,7 +3861,7 @@ export declare namespace enums {
|
|
|
3742
3861
|
}
|
|
3743
3862
|
/**
|
|
3744
3863
|
* @name DataDrivenModelStatusEnum.DataDrivenModelStatus
|
|
3745
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
3864
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/DataDrivenModelStatusEnum.DataDrivenModelStatus
|
|
3746
3865
|
*/
|
|
3747
3866
|
enum DataDrivenModelStatus {
|
|
3748
3867
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -3754,7 +3873,7 @@ export declare namespace enums {
|
|
|
3754
3873
|
}
|
|
3755
3874
|
/**
|
|
3756
3875
|
* @name DataLinkStatusEnum.DataLinkStatus
|
|
3757
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
3876
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/DataLinkStatusEnum.DataLinkStatus
|
|
3758
3877
|
*/
|
|
3759
3878
|
enum DataLinkStatus {
|
|
3760
3879
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -3768,7 +3887,7 @@ export declare namespace enums {
|
|
|
3768
3887
|
}
|
|
3769
3888
|
/**
|
|
3770
3889
|
* @name DataLinkTypeEnum.DataLinkType
|
|
3771
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
3890
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/DataLinkTypeEnum.DataLinkType
|
|
3772
3891
|
*/
|
|
3773
3892
|
enum DataLinkType {
|
|
3774
3893
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -3777,7 +3896,7 @@ export declare namespace enums {
|
|
|
3777
3896
|
}
|
|
3778
3897
|
/**
|
|
3779
3898
|
* @name DemandGenChannelConfigEnum.DemandGenChannelConfig
|
|
3780
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
3899
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/DemandGenChannelConfigEnum.DemandGenChannelConfig
|
|
3781
3900
|
*/
|
|
3782
3901
|
enum DemandGenChannelConfig {
|
|
3783
3902
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -3787,7 +3906,7 @@ export declare namespace enums {
|
|
|
3787
3906
|
}
|
|
3788
3907
|
/**
|
|
3789
3908
|
* @name DemandGenChannelStrategyEnum.DemandGenChannelStrategy
|
|
3790
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
3909
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/DemandGenChannelStrategyEnum.DemandGenChannelStrategy
|
|
3791
3910
|
*/
|
|
3792
3911
|
enum DemandGenChannelStrategy {
|
|
3793
3912
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -3797,7 +3916,7 @@ export declare namespace enums {
|
|
|
3797
3916
|
}
|
|
3798
3917
|
/**
|
|
3799
3918
|
* @name DistanceBucketEnum.DistanceBucket
|
|
3800
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
3919
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/DistanceBucketEnum.DistanceBucket
|
|
3801
3920
|
*/
|
|
3802
3921
|
enum DistanceBucket {
|
|
3803
3922
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -3832,7 +3951,7 @@ export declare namespace enums {
|
|
|
3832
3951
|
}
|
|
3833
3952
|
/**
|
|
3834
3953
|
* @name EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus
|
|
3835
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
3954
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus
|
|
3836
3955
|
*/
|
|
3837
3956
|
enum EuPoliticalAdvertisingStatus {
|
|
3838
3957
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -3842,7 +3961,7 @@ export declare namespace enums {
|
|
|
3842
3961
|
}
|
|
3843
3962
|
/**
|
|
3844
3963
|
* @name ExperimentAssetDetailOperationEnum.ExperimentAssetDetailOperation
|
|
3845
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
3964
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/ExperimentAssetDetailOperationEnum.ExperimentAssetDetailOperation
|
|
3846
3965
|
*/
|
|
3847
3966
|
enum ExperimentAssetDetailOperation {
|
|
3848
3967
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -3852,7 +3971,7 @@ export declare namespace enums {
|
|
|
3852
3971
|
}
|
|
3853
3972
|
/**
|
|
3854
3973
|
* @name ExperimentStatusEnum.ExperimentStatus
|
|
3855
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
3974
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/ExperimentStatusEnum.ExperimentStatus
|
|
3856
3975
|
*/
|
|
3857
3976
|
enum ExperimentStatus {
|
|
3858
3977
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -3867,7 +3986,7 @@ export declare namespace enums {
|
|
|
3867
3986
|
}
|
|
3868
3987
|
/**
|
|
3869
3988
|
* @name ExperimentTypeEnum.ExperimentType
|
|
3870
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
3989
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/ExperimentTypeEnum.ExperimentType
|
|
3871
3990
|
*/
|
|
3872
3991
|
enum ExperimentType {
|
|
3873
3992
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -3885,11 +4004,13 @@ export declare namespace enums {
|
|
|
3885
4004
|
OPTIMIZE_ASSETS = 13,// OPTIMIZE_ASSETS
|
|
3886
4005
|
ADOPT_AI_MAX = 14,// ADOPT_AI_MAX
|
|
3887
4006
|
ADOPT_BROAD_MATCH_KEYWORDS = 15,// ADOPT_BROAD_MATCH_KEYWORDS
|
|
3888
|
-
PMAX_REPLACEMENT_SHOPPING = 16
|
|
4007
|
+
PMAX_REPLACEMENT_SHOPPING = 16,// PMAX_REPLACEMENT_SHOPPING
|
|
4008
|
+
COMPARE_CAMPAIGNS = 17,// COMPARE_CAMPAIGNS
|
|
4009
|
+
PMAX_TEXT_CUSTOMIZATION_FINAL_URL_EXPANSION = 18
|
|
3889
4010
|
}
|
|
3890
4011
|
/**
|
|
3891
4012
|
* @name GeoTargetConstantStatusEnum.GeoTargetConstantStatus
|
|
3892
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
4013
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/GeoTargetConstantStatusEnum.GeoTargetConstantStatus
|
|
3893
4014
|
*/
|
|
3894
4015
|
enum GeoTargetConstantStatus {
|
|
3895
4016
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -3899,7 +4020,7 @@ export declare namespace enums {
|
|
|
3899
4020
|
}
|
|
3900
4021
|
/**
|
|
3901
4022
|
* @name GeoTargetingTypeEnum.GeoTargetingType
|
|
3902
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
4023
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/GeoTargetingTypeEnum.GeoTargetingType
|
|
3903
4024
|
*/
|
|
3904
4025
|
enum GeoTargetingType {
|
|
3905
4026
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -3909,7 +4030,7 @@ export declare namespace enums {
|
|
|
3909
4030
|
}
|
|
3910
4031
|
/**
|
|
3911
4032
|
* @name GoalConfigLevelEnum.GoalConfigLevel
|
|
3912
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
4033
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/GoalConfigLevelEnum.GoalConfigLevel
|
|
3913
4034
|
*/
|
|
3914
4035
|
enum GoalConfigLevel {
|
|
3915
4036
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -3919,7 +4040,7 @@ export declare namespace enums {
|
|
|
3919
4040
|
}
|
|
3920
4041
|
/**
|
|
3921
4042
|
* @name GoalOptimizationEligibilityEnum.GoalOptimizationEligibility
|
|
3922
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
4043
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/GoalOptimizationEligibilityEnum.GoalOptimizationEligibility
|
|
3923
4044
|
*/
|
|
3924
4045
|
enum GoalOptimizationEligibility {
|
|
3925
4046
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -3929,16 +4050,18 @@ export declare namespace enums {
|
|
|
3929
4050
|
}
|
|
3930
4051
|
/**
|
|
3931
4052
|
* @name GoalTypeEnum.GoalType
|
|
3932
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
4053
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/GoalTypeEnum.GoalType
|
|
3933
4054
|
*/
|
|
3934
4055
|
enum GoalType {
|
|
3935
4056
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
3936
4057
|
UNKNOWN = 1,// UNKNOWN
|
|
3937
|
-
CUSTOMER_RETENTION = 3
|
|
4058
|
+
CUSTOMER_RETENTION = 3,// CUSTOMER_RETENTION
|
|
4059
|
+
NEW_CUSTOMER_ACQUISITION = 4,// NEW_CUSTOMER_ACQUISITION
|
|
4060
|
+
LOYALTY_RETENTION = 5
|
|
3938
4061
|
}
|
|
3939
4062
|
/**
|
|
3940
4063
|
* @name GoogleAdsFieldCategoryEnum.GoogleAdsFieldCategory
|
|
3941
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
4064
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/GoogleAdsFieldCategoryEnum.GoogleAdsFieldCategory
|
|
3942
4065
|
*/
|
|
3943
4066
|
enum GoogleAdsFieldCategory {
|
|
3944
4067
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -3950,7 +4073,7 @@ export declare namespace enums {
|
|
|
3950
4073
|
}
|
|
3951
4074
|
/**
|
|
3952
4075
|
* @name GoogleAdsFieldDataTypeEnum.GoogleAdsFieldDataType
|
|
3953
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
4076
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/GoogleAdsFieldDataTypeEnum.GoogleAdsFieldDataType
|
|
3954
4077
|
*/
|
|
3955
4078
|
enum GoogleAdsFieldDataType {
|
|
3956
4079
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -3969,7 +4092,7 @@ export declare namespace enums {
|
|
|
3969
4092
|
}
|
|
3970
4093
|
/**
|
|
3971
4094
|
* @name GoogleVoiceCallStatusEnum.GoogleVoiceCallStatus
|
|
3972
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
4095
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/GoogleVoiceCallStatusEnum.GoogleVoiceCallStatus
|
|
3973
4096
|
*/
|
|
3974
4097
|
enum GoogleVoiceCallStatus {
|
|
3975
4098
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -3979,7 +4102,7 @@ export declare namespace enums {
|
|
|
3979
4102
|
}
|
|
3980
4103
|
/**
|
|
3981
4104
|
* @name HotelAssetSuggestionStatusEnum.HotelAssetSuggestionStatus
|
|
3982
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
4105
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/HotelAssetSuggestionStatusEnum.HotelAssetSuggestionStatus
|
|
3983
4106
|
*/
|
|
3984
4107
|
enum HotelAssetSuggestionStatus {
|
|
3985
4108
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -3990,7 +4113,7 @@ export declare namespace enums {
|
|
|
3990
4113
|
}
|
|
3991
4114
|
/**
|
|
3992
4115
|
* @name HotelReconciliationStatusEnum.HotelReconciliationStatus
|
|
3993
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
4116
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/HotelReconciliationStatusEnum.HotelReconciliationStatus
|
|
3994
4117
|
*/
|
|
3995
4118
|
enum HotelReconciliationStatus {
|
|
3996
4119
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -4002,7 +4125,7 @@ export declare namespace enums {
|
|
|
4002
4125
|
}
|
|
4003
4126
|
/**
|
|
4004
4127
|
* @name IdentityVerificationProgramEnum.IdentityVerificationProgram
|
|
4005
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
4128
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/IdentityVerificationProgramEnum.IdentityVerificationProgram
|
|
4006
4129
|
*/
|
|
4007
4130
|
enum IdentityVerificationProgram {
|
|
4008
4131
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -4011,7 +4134,7 @@ export declare namespace enums {
|
|
|
4011
4134
|
}
|
|
4012
4135
|
/**
|
|
4013
4136
|
* @name IdentityVerificationProgramStatusEnum.IdentityVerificationProgramStatus
|
|
4014
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
4137
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/IdentityVerificationProgramStatusEnum.IdentityVerificationProgramStatus
|
|
4015
4138
|
*/
|
|
4016
4139
|
enum IdentityVerificationProgramStatus {
|
|
4017
4140
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -4021,9 +4144,19 @@ export declare namespace enums {
|
|
|
4021
4144
|
SUCCESS = 4,// SUCCESS
|
|
4022
4145
|
FAILURE = 5
|
|
4023
4146
|
}
|
|
4147
|
+
/**
|
|
4148
|
+
* @name IncentiveOfferTypeEnum.IncentiveOfferType
|
|
4149
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/IncentiveOfferTypeEnum.IncentiveOfferType
|
|
4150
|
+
*/
|
|
4151
|
+
enum IncentiveOfferType {
|
|
4152
|
+
UNSPECIFIED = 0,// UNSPECIFIED
|
|
4153
|
+
UNKNOWN = 1,// UNKNOWN
|
|
4154
|
+
NO_INCENTIVE = 2,// NO_INCENTIVE
|
|
4155
|
+
CYO_INCENTIVE = 3
|
|
4156
|
+
}
|
|
4024
4157
|
/**
|
|
4025
4158
|
* @name IncentiveStateEnum.IncentiveState
|
|
4026
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
4159
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/IncentiveStateEnum.IncentiveState
|
|
4027
4160
|
*/
|
|
4028
4161
|
enum IncentiveState {
|
|
4029
4162
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -4036,9 +4169,18 @@ export declare namespace enums {
|
|
|
4036
4169
|
INVALIDATED = 7,// INVALIDATED
|
|
4037
4170
|
REWARD_EXHAUSTED = 8
|
|
4038
4171
|
}
|
|
4172
|
+
/**
|
|
4173
|
+
* @name IncentiveTypeEnum.IncentiveType
|
|
4174
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/IncentiveTypeEnum.IncentiveType
|
|
4175
|
+
*/
|
|
4176
|
+
enum IncentiveType {
|
|
4177
|
+
UNSPECIFIED = 0,// UNSPECIFIED
|
|
4178
|
+
UNKNOWN = 1,// UNKNOWN
|
|
4179
|
+
ACQUISITION = 2
|
|
4180
|
+
}
|
|
4039
4181
|
/**
|
|
4040
4182
|
* @name InsightsTrendEnum.InsightsTrend
|
|
4041
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
4183
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/InsightsTrendEnum.InsightsTrend
|
|
4042
4184
|
*/
|
|
4043
4185
|
enum InsightsTrend {
|
|
4044
4186
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -4050,7 +4192,7 @@ export declare namespace enums {
|
|
|
4050
4192
|
}
|
|
4051
4193
|
/**
|
|
4052
4194
|
* @name InvoiceTypeEnum.InvoiceType
|
|
4053
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
4195
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/InvoiceTypeEnum.InvoiceType
|
|
4054
4196
|
*/
|
|
4055
4197
|
enum InvoiceType {
|
|
4056
4198
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -4060,7 +4202,7 @@ export declare namespace enums {
|
|
|
4060
4202
|
}
|
|
4061
4203
|
/**
|
|
4062
4204
|
* @name KeywordPlanForecastIntervalEnum.KeywordPlanForecastInterval
|
|
4063
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
4205
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/KeywordPlanForecastIntervalEnum.KeywordPlanForecastInterval
|
|
4064
4206
|
*/
|
|
4065
4207
|
enum KeywordPlanForecastInterval {
|
|
4066
4208
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -4071,7 +4213,7 @@ export declare namespace enums {
|
|
|
4071
4213
|
}
|
|
4072
4214
|
/**
|
|
4073
4215
|
* @name KeywordPlanKeywordAnnotationEnum.KeywordPlanKeywordAnnotation
|
|
4074
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
4216
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/KeywordPlanKeywordAnnotationEnum.KeywordPlanKeywordAnnotation
|
|
4075
4217
|
*/
|
|
4076
4218
|
enum KeywordPlanKeywordAnnotation {
|
|
4077
4219
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -4080,7 +4222,7 @@ export declare namespace enums {
|
|
|
4080
4222
|
}
|
|
4081
4223
|
/**
|
|
4082
4224
|
* @name KeywordPlanNetworkEnum.KeywordPlanNetwork
|
|
4083
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
4225
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/KeywordPlanNetworkEnum.KeywordPlanNetwork
|
|
4084
4226
|
*/
|
|
4085
4227
|
enum KeywordPlanNetwork {
|
|
4086
4228
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -4090,7 +4232,7 @@ export declare namespace enums {
|
|
|
4090
4232
|
}
|
|
4091
4233
|
/**
|
|
4092
4234
|
* @name LabelStatusEnum.LabelStatus
|
|
4093
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
4235
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/LabelStatusEnum.LabelStatus
|
|
4094
4236
|
*/
|
|
4095
4237
|
enum LabelStatus {
|
|
4096
4238
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -4098,9 +4240,30 @@ export declare namespace enums {
|
|
|
4098
4240
|
ENABLED = 2,// ENABLED
|
|
4099
4241
|
REMOVED = 3
|
|
4100
4242
|
}
|
|
4243
|
+
/**
|
|
4244
|
+
* @name LiftMeasurementFlightStatusEnum.LiftMeasurementFlightStatus
|
|
4245
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/LiftMeasurementFlightStatusEnum.LiftMeasurementFlightStatus
|
|
4246
|
+
*/
|
|
4247
|
+
enum LiftMeasurementFlightStatus {
|
|
4248
|
+
UNSPECIFIED = 0,// UNSPECIFIED
|
|
4249
|
+
UNKNOWN = 1,// UNKNOWN
|
|
4250
|
+
ENABLED = 2,// ENABLED
|
|
4251
|
+
STOPPED = 3
|
|
4252
|
+
}
|
|
4253
|
+
/**
|
|
4254
|
+
* @name LiftMetricTypeEnum.LiftMetricType
|
|
4255
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/LiftMetricTypeEnum.LiftMetricType
|
|
4256
|
+
*/
|
|
4257
|
+
enum LiftMetricType {
|
|
4258
|
+
UNSPECIFIED = 0,// UNSPECIFIED
|
|
4259
|
+
UNKNOWN = 1,// UNKNOWN
|
|
4260
|
+
CONVERSION = 2,// CONVERSION
|
|
4261
|
+
SEARCH = 3,// SEARCH
|
|
4262
|
+
SURVEY = 4
|
|
4263
|
+
}
|
|
4101
4264
|
/**
|
|
4102
4265
|
* @name LinkedAccountTypeEnum.LinkedAccountType
|
|
4103
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
4266
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/LinkedAccountTypeEnum.LinkedAccountType
|
|
4104
4267
|
*/
|
|
4105
4268
|
enum LinkedAccountType {
|
|
4106
4269
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -4109,7 +4272,7 @@ export declare namespace enums {
|
|
|
4109
4272
|
}
|
|
4110
4273
|
/**
|
|
4111
4274
|
* @name LinkedProductTypeEnum.LinkedProductType
|
|
4112
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
4275
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/LinkedProductTypeEnum.LinkedProductType
|
|
4113
4276
|
*/
|
|
4114
4277
|
enum LinkedProductType {
|
|
4115
4278
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -4122,7 +4285,7 @@ export declare namespace enums {
|
|
|
4122
4285
|
}
|
|
4123
4286
|
/**
|
|
4124
4287
|
* @name ListingGroupFilterCustomAttributeIndexEnum.ListingGroupFilterCustomAttributeIndex
|
|
4125
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
4288
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/ListingGroupFilterCustomAttributeIndexEnum.ListingGroupFilterCustomAttributeIndex
|
|
4126
4289
|
*/
|
|
4127
4290
|
enum ListingGroupFilterCustomAttributeIndex {
|
|
4128
4291
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -4135,7 +4298,7 @@ export declare namespace enums {
|
|
|
4135
4298
|
}
|
|
4136
4299
|
/**
|
|
4137
4300
|
* @name ListingGroupFilterListingSourceEnum.ListingGroupFilterListingSource
|
|
4138
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
4301
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/ListingGroupFilterListingSourceEnum.ListingGroupFilterListingSource
|
|
4139
4302
|
*/
|
|
4140
4303
|
enum ListingGroupFilterListingSource {
|
|
4141
4304
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -4146,7 +4309,7 @@ export declare namespace enums {
|
|
|
4146
4309
|
}
|
|
4147
4310
|
/**
|
|
4148
4311
|
* @name ListingGroupFilterProductCategoryLevelEnum.ListingGroupFilterProductCategoryLevel
|
|
4149
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
4312
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/ListingGroupFilterProductCategoryLevelEnum.ListingGroupFilterProductCategoryLevel
|
|
4150
4313
|
*/
|
|
4151
4314
|
enum ListingGroupFilterProductCategoryLevel {
|
|
4152
4315
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -4159,7 +4322,7 @@ export declare namespace enums {
|
|
|
4159
4322
|
}
|
|
4160
4323
|
/**
|
|
4161
4324
|
* @name ListingGroupFilterProductChannelEnum.ListingGroupFilterProductChannel
|
|
4162
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
4325
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/ListingGroupFilterProductChannelEnum.ListingGroupFilterProductChannel
|
|
4163
4326
|
*/
|
|
4164
4327
|
enum ListingGroupFilterProductChannel {
|
|
4165
4328
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -4169,7 +4332,7 @@ export declare namespace enums {
|
|
|
4169
4332
|
}
|
|
4170
4333
|
/**
|
|
4171
4334
|
* @name ListingGroupFilterProductConditionEnum.ListingGroupFilterProductCondition
|
|
4172
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
4335
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/ListingGroupFilterProductConditionEnum.ListingGroupFilterProductCondition
|
|
4173
4336
|
*/
|
|
4174
4337
|
enum ListingGroupFilterProductCondition {
|
|
4175
4338
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -4180,7 +4343,7 @@ export declare namespace enums {
|
|
|
4180
4343
|
}
|
|
4181
4344
|
/**
|
|
4182
4345
|
* @name ListingGroupFilterProductTypeLevelEnum.ListingGroupFilterProductTypeLevel
|
|
4183
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
4346
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/ListingGroupFilterProductTypeLevelEnum.ListingGroupFilterProductTypeLevel
|
|
4184
4347
|
*/
|
|
4185
4348
|
enum ListingGroupFilterProductTypeLevel {
|
|
4186
4349
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -4193,7 +4356,7 @@ export declare namespace enums {
|
|
|
4193
4356
|
}
|
|
4194
4357
|
/**
|
|
4195
4358
|
* @name ListingGroupFilterTypeEnum.ListingGroupFilterType
|
|
4196
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
4359
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/ListingGroupFilterTypeEnum.ListingGroupFilterType
|
|
4197
4360
|
*/
|
|
4198
4361
|
enum ListingGroupFilterType {
|
|
4199
4362
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -4204,7 +4367,7 @@ export declare namespace enums {
|
|
|
4204
4367
|
}
|
|
4205
4368
|
/**
|
|
4206
4369
|
* @name ListingTypeEnum.ListingType
|
|
4207
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
4370
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/ListingTypeEnum.ListingType
|
|
4208
4371
|
*/
|
|
4209
4372
|
enum ListingType {
|
|
4210
4373
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -4213,7 +4376,7 @@ export declare namespace enums {
|
|
|
4213
4376
|
}
|
|
4214
4377
|
/**
|
|
4215
4378
|
* @name LocalServicesBusinessRegistrationCheckRejectionReasonEnum.LocalServicesBusinessRegistrationCheckRejectionReason
|
|
4216
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
4379
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/LocalServicesBusinessRegistrationCheckRejectionReasonEnum.LocalServicesBusinessRegistrationCheckRejectionReason
|
|
4217
4380
|
*/
|
|
4218
4381
|
enum LocalServicesBusinessRegistrationCheckRejectionReason {
|
|
4219
4382
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -4230,7 +4393,7 @@ export declare namespace enums {
|
|
|
4230
4393
|
}
|
|
4231
4394
|
/**
|
|
4232
4395
|
* @name LocalServicesBusinessRegistrationTypeEnum.LocalServicesBusinessRegistrationType
|
|
4233
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
4396
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/LocalServicesBusinessRegistrationTypeEnum.LocalServicesBusinessRegistrationType
|
|
4234
4397
|
*/
|
|
4235
4398
|
enum LocalServicesBusinessRegistrationType {
|
|
4236
4399
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -4240,7 +4403,7 @@ export declare namespace enums {
|
|
|
4240
4403
|
}
|
|
4241
4404
|
/**
|
|
4242
4405
|
* @name LocalServicesLeadConversationTypeEnum.LocalServicesLeadConversationType
|
|
4243
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
4406
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/LocalServicesLeadConversationTypeEnum.LocalServicesLeadConversationType
|
|
4244
4407
|
*/
|
|
4245
4408
|
enum LocalServicesLeadConversationType {
|
|
4246
4409
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -4255,7 +4418,7 @@ export declare namespace enums {
|
|
|
4255
4418
|
}
|
|
4256
4419
|
/**
|
|
4257
4420
|
* @name LocalServicesEmployeeStatusEnum.LocalServicesEmployeeStatus
|
|
4258
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
4421
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/LocalServicesEmployeeStatusEnum.LocalServicesEmployeeStatus
|
|
4259
4422
|
*/
|
|
4260
4423
|
enum LocalServicesEmployeeStatus {
|
|
4261
4424
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -4265,7 +4428,7 @@ export declare namespace enums {
|
|
|
4265
4428
|
}
|
|
4266
4429
|
/**
|
|
4267
4430
|
* @name LocalServicesEmployeeTypeEnum.LocalServicesEmployeeType
|
|
4268
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
4431
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/LocalServicesEmployeeTypeEnum.LocalServicesEmployeeType
|
|
4269
4432
|
*/
|
|
4270
4433
|
enum LocalServicesEmployeeType {
|
|
4271
4434
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -4275,7 +4438,7 @@ export declare namespace enums {
|
|
|
4275
4438
|
}
|
|
4276
4439
|
/**
|
|
4277
4440
|
* @name LocalServicesInsuranceRejectionReasonEnum.LocalServicesInsuranceRejectionReason
|
|
4278
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
4441
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/LocalServicesInsuranceRejectionReasonEnum.LocalServicesInsuranceRejectionReason
|
|
4279
4442
|
*/
|
|
4280
4443
|
enum LocalServicesInsuranceRejectionReason {
|
|
4281
4444
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -4297,7 +4460,7 @@ export declare namespace enums {
|
|
|
4297
4460
|
}
|
|
4298
4461
|
/**
|
|
4299
4462
|
* @name LocalServicesLeadCreditIssuanceDecisionEnum.LocalServicesLeadCreditIssuanceDecision
|
|
4300
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
4463
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/LocalServicesLeadCreditIssuanceDecisionEnum.LocalServicesLeadCreditIssuanceDecision
|
|
4301
4464
|
*/
|
|
4302
4465
|
enum LocalServicesLeadCreditIssuanceDecision {
|
|
4303
4466
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -4309,7 +4472,7 @@ export declare namespace enums {
|
|
|
4309
4472
|
}
|
|
4310
4473
|
/**
|
|
4311
4474
|
* @name LocalServicesCreditStateEnum.LocalServicesCreditState
|
|
4312
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
4475
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/LocalServicesCreditStateEnum.LocalServicesCreditState
|
|
4313
4476
|
*/
|
|
4314
4477
|
enum LocalServicesCreditState {
|
|
4315
4478
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -4319,7 +4482,7 @@ export declare namespace enums {
|
|
|
4319
4482
|
}
|
|
4320
4483
|
/**
|
|
4321
4484
|
* @name LocalServicesLeadStatusEnum.LocalServicesLeadStatus
|
|
4322
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
4485
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/LocalServicesLeadStatusEnum.LocalServicesLeadStatus
|
|
4323
4486
|
*/
|
|
4324
4487
|
enum LocalServicesLeadStatus {
|
|
4325
4488
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -4335,7 +4498,7 @@ export declare namespace enums {
|
|
|
4335
4498
|
}
|
|
4336
4499
|
/**
|
|
4337
4500
|
* @name LocalServicesLeadSurveyAnswerEnum.LocalServicesLeadSurveyAnswer
|
|
4338
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
4501
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/LocalServicesLeadSurveyAnswerEnum.LocalServicesLeadSurveyAnswer
|
|
4339
4502
|
*/
|
|
4340
4503
|
enum LocalServicesLeadSurveyAnswer {
|
|
4341
4504
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -4348,7 +4511,7 @@ export declare namespace enums {
|
|
|
4348
4511
|
}
|
|
4349
4512
|
/**
|
|
4350
4513
|
* @name LocalServicesLeadSurveyDissatisfiedReasonEnum.LocalServicesLeadSurveyDissatisfiedReason
|
|
4351
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
4514
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/LocalServicesLeadSurveyDissatisfiedReasonEnum.LocalServicesLeadSurveyDissatisfiedReason
|
|
4352
4515
|
*/
|
|
4353
4516
|
enum LocalServicesLeadSurveyDissatisfiedReason {
|
|
4354
4517
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -4363,7 +4526,7 @@ export declare namespace enums {
|
|
|
4363
4526
|
}
|
|
4364
4527
|
/**
|
|
4365
4528
|
* @name LocalServicesLeadSurveySatisfiedReasonEnum.LocalServicesLeadSurveySatisfiedReason
|
|
4366
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
4529
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/LocalServicesLeadSurveySatisfiedReasonEnum.LocalServicesLeadSurveySatisfiedReason
|
|
4367
4530
|
*/
|
|
4368
4531
|
enum LocalServicesLeadSurveySatisfiedReason {
|
|
4369
4532
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -4376,7 +4539,7 @@ export declare namespace enums {
|
|
|
4376
4539
|
}
|
|
4377
4540
|
/**
|
|
4378
4541
|
* @name LocalServicesLeadTypeEnum.LocalServicesLeadType
|
|
4379
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
4542
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/LocalServicesLeadTypeEnum.LocalServicesLeadType
|
|
4380
4543
|
*/
|
|
4381
4544
|
enum LocalServicesLeadType {
|
|
4382
4545
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -4387,7 +4550,7 @@ export declare namespace enums {
|
|
|
4387
4550
|
}
|
|
4388
4551
|
/**
|
|
4389
4552
|
* @name LocalServicesLicenseRejectionReasonEnum.LocalServicesLicenseRejectionReason
|
|
4390
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
4553
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/LocalServicesLicenseRejectionReasonEnum.LocalServicesLicenseRejectionReason
|
|
4391
4554
|
*/
|
|
4392
4555
|
enum LocalServicesLicenseRejectionReason {
|
|
4393
4556
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -4402,7 +4565,7 @@ export declare namespace enums {
|
|
|
4402
4565
|
}
|
|
4403
4566
|
/**
|
|
4404
4567
|
* @name LocalServicesParticipantTypeEnum.LocalServicesParticipantType
|
|
4405
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
4568
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/LocalServicesParticipantTypeEnum.LocalServicesParticipantType
|
|
4406
4569
|
*/
|
|
4407
4570
|
enum LocalServicesParticipantType {
|
|
4408
4571
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -4412,7 +4575,7 @@ export declare namespace enums {
|
|
|
4412
4575
|
}
|
|
4413
4576
|
/**
|
|
4414
4577
|
* @name LocalServicesVerificationArtifactStatusEnum.LocalServicesVerificationArtifactStatus
|
|
4415
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
4578
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/LocalServicesVerificationArtifactStatusEnum.LocalServicesVerificationArtifactStatus
|
|
4416
4579
|
*/
|
|
4417
4580
|
enum LocalServicesVerificationArtifactStatus {
|
|
4418
4581
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -4425,7 +4588,7 @@ export declare namespace enums {
|
|
|
4425
4588
|
}
|
|
4426
4589
|
/**
|
|
4427
4590
|
* @name LocalServicesVerificationArtifactTypeEnum.LocalServicesVerificationArtifactType
|
|
4428
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
4591
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/LocalServicesVerificationArtifactTypeEnum.LocalServicesVerificationArtifactType
|
|
4429
4592
|
*/
|
|
4430
4593
|
enum LocalServicesVerificationArtifactType {
|
|
4431
4594
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -4437,7 +4600,7 @@ export declare namespace enums {
|
|
|
4437
4600
|
}
|
|
4438
4601
|
/**
|
|
4439
4602
|
* @name LocalServicesVerificationStatusEnum.LocalServicesVerificationStatus
|
|
4440
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
4603
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/LocalServicesVerificationStatusEnum.LocalServicesVerificationStatus
|
|
4441
4604
|
*/
|
|
4442
4605
|
enum LocalServicesVerificationStatus {
|
|
4443
4606
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -4452,7 +4615,7 @@ export declare namespace enums {
|
|
|
4452
4615
|
}
|
|
4453
4616
|
/**
|
|
4454
4617
|
* @name LocationSourceTypeEnum.LocationSourceType
|
|
4455
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
4618
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/LocationSourceTypeEnum.LocationSourceType
|
|
4456
4619
|
*/
|
|
4457
4620
|
enum LocationSourceType {
|
|
4458
4621
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -4462,7 +4625,7 @@ export declare namespace enums {
|
|
|
4462
4625
|
}
|
|
4463
4626
|
/**
|
|
4464
4627
|
* @name ManagerLinkStatusEnum.ManagerLinkStatus
|
|
4465
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
4628
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/ManagerLinkStatusEnum.ManagerLinkStatus
|
|
4466
4629
|
*/
|
|
4467
4630
|
enum ManagerLinkStatus {
|
|
4468
4631
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -4475,7 +4638,7 @@ export declare namespace enums {
|
|
|
4475
4638
|
}
|
|
4476
4639
|
/**
|
|
4477
4640
|
* @name MediaTypeEnum.MediaType
|
|
4478
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
4641
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/MediaTypeEnum.MediaType
|
|
4479
4642
|
*/
|
|
4480
4643
|
enum MediaType {
|
|
4481
4644
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -4489,7 +4652,7 @@ export declare namespace enums {
|
|
|
4489
4652
|
}
|
|
4490
4653
|
/**
|
|
4491
4654
|
* @name MessagingRestrictionTypeEnum.MessagingRestrictionType
|
|
4492
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
4655
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/MessagingRestrictionTypeEnum.MessagingRestrictionType
|
|
4493
4656
|
*/
|
|
4494
4657
|
enum MessagingRestrictionType {
|
|
4495
4658
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -4498,7 +4661,7 @@ export declare namespace enums {
|
|
|
4498
4661
|
}
|
|
4499
4662
|
/**
|
|
4500
4663
|
* @name MobileDeviceTypeEnum.MobileDeviceType
|
|
4501
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
4664
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/MobileDeviceTypeEnum.MobileDeviceType
|
|
4502
4665
|
*/
|
|
4503
4666
|
enum MobileDeviceType {
|
|
4504
4667
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -4506,9 +4669,43 @@ export declare namespace enums {
|
|
|
4506
4669
|
MOBILE = 2,// MOBILE
|
|
4507
4670
|
TABLET = 3
|
|
4508
4671
|
}
|
|
4672
|
+
/**
|
|
4673
|
+
* @name MultiPartyAuthOperationTypeEnum.MultiPartyAuthOperationType
|
|
4674
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/MultiPartyAuthOperationTypeEnum.MultiPartyAuthOperationType
|
|
4675
|
+
*/
|
|
4676
|
+
enum MultiPartyAuthOperationType {
|
|
4677
|
+
UNSPECIFIED = 0,// UNSPECIFIED
|
|
4678
|
+
UNKNOWN = 1,// UNKNOWN
|
|
4679
|
+
CREATE = 2,// CREATE
|
|
4680
|
+
UPDATE = 3,// UPDATE
|
|
4681
|
+
REMOVE = 4
|
|
4682
|
+
}
|
|
4683
|
+
/**
|
|
4684
|
+
* @name MultiPartyAuthReviewStatusEnum.MultiPartyAuthReviewStatus
|
|
4685
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/MultiPartyAuthReviewStatusEnum.MultiPartyAuthReviewStatus
|
|
4686
|
+
*/
|
|
4687
|
+
enum MultiPartyAuthReviewStatus {
|
|
4688
|
+
UNSPECIFIED = 0,// UNSPECIFIED
|
|
4689
|
+
UNKNOWN = 1,// UNKNOWN
|
|
4690
|
+
APPROVED = 2,// APPROVED
|
|
4691
|
+
PENDING = 3,// PENDING
|
|
4692
|
+
REVOKED = 4,// REVOKED
|
|
4693
|
+
REJECTED = 5,// REJECTED
|
|
4694
|
+
EXPIRED = 6
|
|
4695
|
+
}
|
|
4696
|
+
/**
|
|
4697
|
+
* @name MultiPartyAuthReviewTargetResourceEnum.MultiPartyAuthReviewTargetResource
|
|
4698
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/MultiPartyAuthReviewTargetResourceEnum.MultiPartyAuthReviewTargetResource
|
|
4699
|
+
*/
|
|
4700
|
+
enum MultiPartyAuthReviewTargetResource {
|
|
4701
|
+
UNSPECIFIED = 0,// UNSPECIFIED
|
|
4702
|
+
UNKNOWN = 1,// UNKNOWN
|
|
4703
|
+
CUSTOMER_USER_ACCESS = 2,// CUSTOMER_USER_ACCESS
|
|
4704
|
+
CUSTOMER_USER_ACCESS_INVITATION = 3
|
|
4705
|
+
}
|
|
4509
4706
|
/**
|
|
4510
4707
|
* @name NegativeGeoTargetTypeEnum.NegativeGeoTargetType
|
|
4511
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
4708
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/NegativeGeoTargetTypeEnum.NegativeGeoTargetType
|
|
4512
4709
|
*/
|
|
4513
4710
|
enum NegativeGeoTargetType {
|
|
4514
4711
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -4518,7 +4715,7 @@ export declare namespace enums {
|
|
|
4518
4715
|
}
|
|
4519
4716
|
/**
|
|
4520
4717
|
* @name NonSkippableMaxDurationEnum.NonSkippableMaxDuration
|
|
4521
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
4718
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/NonSkippableMaxDurationEnum.NonSkippableMaxDuration
|
|
4522
4719
|
*/
|
|
4523
4720
|
enum NonSkippableMaxDuration {
|
|
4524
4721
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -4529,7 +4726,7 @@ export declare namespace enums {
|
|
|
4529
4726
|
}
|
|
4530
4727
|
/**
|
|
4531
4728
|
* @name NonSkippableMinDurationEnum.NonSkippableMinDuration
|
|
4532
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
4729
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/NonSkippableMinDurationEnum.NonSkippableMinDuration
|
|
4533
4730
|
*/
|
|
4534
4731
|
enum NonSkippableMinDuration {
|
|
4535
4732
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -4541,7 +4738,7 @@ export declare namespace enums {
|
|
|
4541
4738
|
}
|
|
4542
4739
|
/**
|
|
4543
4740
|
* @name OfflineConversionDiagnosticStatusEnum.OfflineConversionDiagnosticStatus
|
|
4544
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
4741
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/OfflineConversionDiagnosticStatusEnum.OfflineConversionDiagnosticStatus
|
|
4545
4742
|
*/
|
|
4546
4743
|
enum OfflineConversionDiagnosticStatus {
|
|
4547
4744
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -4553,7 +4750,7 @@ export declare namespace enums {
|
|
|
4553
4750
|
}
|
|
4554
4751
|
/**
|
|
4555
4752
|
* @name OfflineEventUploadClientEnum.OfflineEventUploadClient
|
|
4556
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
4753
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/OfflineEventUploadClientEnum.OfflineEventUploadClient
|
|
4557
4754
|
*/
|
|
4558
4755
|
enum OfflineEventUploadClient {
|
|
4559
4756
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -4564,7 +4761,7 @@ export declare namespace enums {
|
|
|
4564
4761
|
}
|
|
4565
4762
|
/**
|
|
4566
4763
|
* @name OfflineUserDataJobFailureReasonEnum.OfflineUserDataJobFailureReason
|
|
4567
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
4764
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/OfflineUserDataJobFailureReasonEnum.OfflineUserDataJobFailureReason
|
|
4568
4765
|
*/
|
|
4569
4766
|
enum OfflineUserDataJobFailureReason {
|
|
4570
4767
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -4577,7 +4774,7 @@ export declare namespace enums {
|
|
|
4577
4774
|
}
|
|
4578
4775
|
/**
|
|
4579
4776
|
* @name OfflineUserDataJobMatchRateRangeEnum.OfflineUserDataJobMatchRateRange
|
|
4580
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
4777
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/OfflineUserDataJobMatchRateRangeEnum.OfflineUserDataJobMatchRateRange
|
|
4581
4778
|
*/
|
|
4582
4779
|
enum OfflineUserDataJobMatchRateRange {
|
|
4583
4780
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -4594,7 +4791,7 @@ export declare namespace enums {
|
|
|
4594
4791
|
}
|
|
4595
4792
|
/**
|
|
4596
4793
|
* @name OfflineUserDataJobStatusEnum.OfflineUserDataJobStatus
|
|
4597
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
4794
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/OfflineUserDataJobStatusEnum.OfflineUserDataJobStatus
|
|
4598
4795
|
*/
|
|
4599
4796
|
enum OfflineUserDataJobStatus {
|
|
4600
4797
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -4606,7 +4803,7 @@ export declare namespace enums {
|
|
|
4606
4803
|
}
|
|
4607
4804
|
/**
|
|
4608
4805
|
* @name OfflineUserDataJobTypeEnum.OfflineUserDataJobType
|
|
4609
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
4806
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/OfflineUserDataJobTypeEnum.OfflineUserDataJobType
|
|
4610
4807
|
*/
|
|
4611
4808
|
enum OfflineUserDataJobType {
|
|
4612
4809
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -4618,7 +4815,7 @@ export declare namespace enums {
|
|
|
4618
4815
|
}
|
|
4619
4816
|
/**
|
|
4620
4817
|
* @name OperatingSystemVersionOperatorTypeEnum.OperatingSystemVersionOperatorType
|
|
4621
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
4818
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/OperatingSystemVersionOperatorTypeEnum.OperatingSystemVersionOperatorType
|
|
4622
4819
|
*/
|
|
4623
4820
|
enum OperatingSystemVersionOperatorType {
|
|
4624
4821
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -4628,7 +4825,7 @@ export declare namespace enums {
|
|
|
4628
4825
|
}
|
|
4629
4826
|
/**
|
|
4630
4827
|
* @name OptimizationGoalTypeEnum.OptimizationGoalType
|
|
4631
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
4828
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/OptimizationGoalTypeEnum.OptimizationGoalType
|
|
4632
4829
|
*/
|
|
4633
4830
|
enum OptimizationGoalType {
|
|
4634
4831
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -4639,7 +4836,7 @@ export declare namespace enums {
|
|
|
4639
4836
|
}
|
|
4640
4837
|
/**
|
|
4641
4838
|
* @name PartnershipOpportunityEnum.PartnershipOpportunity
|
|
4642
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
4839
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/PartnershipOpportunityEnum.PartnershipOpportunity
|
|
4643
4840
|
*/
|
|
4644
4841
|
enum PartnershipOpportunity {
|
|
4645
4842
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -4651,7 +4848,7 @@ export declare namespace enums {
|
|
|
4651
4848
|
}
|
|
4652
4849
|
/**
|
|
4653
4850
|
* @name PaymentModeEnum.PaymentMode
|
|
4654
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
4851
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/PaymentModeEnum.PaymentMode
|
|
4655
4852
|
*/
|
|
4656
4853
|
enum PaymentMode {
|
|
4657
4854
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -4663,7 +4860,7 @@ export declare namespace enums {
|
|
|
4663
4860
|
}
|
|
4664
4861
|
/**
|
|
4665
4862
|
* @name PerformanceMaxUpgradeStatusEnum.PerformanceMaxUpgradeStatus
|
|
4666
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
4863
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/PerformanceMaxUpgradeStatusEnum.PerformanceMaxUpgradeStatus
|
|
4667
4864
|
*/
|
|
4668
4865
|
enum PerformanceMaxUpgradeStatus {
|
|
4669
4866
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -4675,7 +4872,7 @@ export declare namespace enums {
|
|
|
4675
4872
|
}
|
|
4676
4873
|
/**
|
|
4677
4874
|
* @name PlacementTypeEnum.PlacementType
|
|
4678
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
4875
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/PlacementTypeEnum.PlacementType
|
|
4679
4876
|
*/
|
|
4680
4877
|
enum PlacementType {
|
|
4681
4878
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -4689,7 +4886,7 @@ export declare namespace enums {
|
|
|
4689
4886
|
}
|
|
4690
4887
|
/**
|
|
4691
4888
|
* @name PositiveGeoTargetTypeEnum.PositiveGeoTargetType
|
|
4692
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
4889
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/PositiveGeoTargetTypeEnum.PositiveGeoTargetType
|
|
4693
4890
|
*/
|
|
4694
4891
|
enum PositiveGeoTargetType {
|
|
4695
4892
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -4700,7 +4897,7 @@ export declare namespace enums {
|
|
|
4700
4897
|
}
|
|
4701
4898
|
/**
|
|
4702
4899
|
* @name ProductAvailabilityEnum.ProductAvailability
|
|
4703
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
4900
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/ProductAvailabilityEnum.ProductAvailability
|
|
4704
4901
|
*/
|
|
4705
4902
|
enum ProductAvailability {
|
|
4706
4903
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -4711,7 +4908,7 @@ export declare namespace enums {
|
|
|
4711
4908
|
}
|
|
4712
4909
|
/**
|
|
4713
4910
|
* @name ProductCategoryStateEnum.ProductCategoryState
|
|
4714
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
4911
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/ProductCategoryStateEnum.ProductCategoryState
|
|
4715
4912
|
*/
|
|
4716
4913
|
enum ProductCategoryState {
|
|
4717
4914
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -4721,7 +4918,7 @@ export declare namespace enums {
|
|
|
4721
4918
|
}
|
|
4722
4919
|
/**
|
|
4723
4920
|
* @name ProductIssueSeverityEnum.ProductIssueSeverity
|
|
4724
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
4921
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/ProductIssueSeverityEnum.ProductIssueSeverity
|
|
4725
4922
|
*/
|
|
4726
4923
|
enum ProductIssueSeverity {
|
|
4727
4924
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -4731,7 +4928,7 @@ export declare namespace enums {
|
|
|
4731
4928
|
}
|
|
4732
4929
|
/**
|
|
4733
4930
|
* @name ProductLinkInvitationStatusEnum.ProductLinkInvitationStatus
|
|
4734
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
4931
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/ProductLinkInvitationStatusEnum.ProductLinkInvitationStatus
|
|
4735
4932
|
*/
|
|
4736
4933
|
enum ProductLinkInvitationStatus {
|
|
4737
4934
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -4745,7 +4942,7 @@ export declare namespace enums {
|
|
|
4745
4942
|
}
|
|
4746
4943
|
/**
|
|
4747
4944
|
* @name ProductStatusEnum.ProductStatus
|
|
4748
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
4945
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/ProductStatusEnum.ProductStatus
|
|
4749
4946
|
*/
|
|
4750
4947
|
enum ProductStatus {
|
|
4751
4948
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -4756,7 +4953,7 @@ export declare namespace enums {
|
|
|
4756
4953
|
}
|
|
4757
4954
|
/**
|
|
4758
4955
|
* @name ReachPlanAgeRangeEnum.ReachPlanAgeRange
|
|
4759
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
4956
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/ReachPlanAgeRangeEnum.ReachPlanAgeRange
|
|
4760
4957
|
*/
|
|
4761
4958
|
enum ReachPlanAgeRange {
|
|
4762
4959
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -4795,7 +4992,7 @@ export declare namespace enums {
|
|
|
4795
4992
|
}
|
|
4796
4993
|
/**
|
|
4797
4994
|
* @name ReachPlanBuyingMethodEnum.ReachPlanBuyingMethod
|
|
4798
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
4995
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/ReachPlanBuyingMethodEnum.ReachPlanBuyingMethod
|
|
4799
4996
|
*/
|
|
4800
4997
|
enum ReachPlanBuyingMethod {
|
|
4801
4998
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -4805,7 +5002,7 @@ export declare namespace enums {
|
|
|
4805
5002
|
}
|
|
4806
5003
|
/**
|
|
4807
5004
|
* @name ReachPlanConversionRateModelEnum.ReachPlanConversionRateModel
|
|
4808
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
5005
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/ReachPlanConversionRateModelEnum.ReachPlanConversionRateModel
|
|
4809
5006
|
*/
|
|
4810
5007
|
enum ReachPlanConversionRateModel {
|
|
4811
5008
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -4817,7 +5014,7 @@ export declare namespace enums {
|
|
|
4817
5014
|
}
|
|
4818
5015
|
/**
|
|
4819
5016
|
* @name ReachPlanCostModelEnum.ReachPlanCostModel
|
|
4820
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
5017
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/ReachPlanCostModelEnum.ReachPlanCostModel
|
|
4821
5018
|
*/
|
|
4822
5019
|
enum ReachPlanCostModel {
|
|
4823
5020
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -4829,7 +5026,7 @@ export declare namespace enums {
|
|
|
4829
5026
|
}
|
|
4830
5027
|
/**
|
|
4831
5028
|
* @name ReachPlanMarketingObjectiveEnum.ReachPlanMarketingObjective
|
|
4832
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
5029
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/ReachPlanMarketingObjectiveEnum.ReachPlanMarketingObjective
|
|
4833
5030
|
*/
|
|
4834
5031
|
enum ReachPlanMarketingObjective {
|
|
4835
5032
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -4840,7 +5037,7 @@ export declare namespace enums {
|
|
|
4840
5037
|
}
|
|
4841
5038
|
/**
|
|
4842
5039
|
* @name ReachPlanNetworkEnum.ReachPlanNetwork
|
|
4843
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
5040
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/ReachPlanNetworkEnum.ReachPlanNetwork
|
|
4844
5041
|
*/
|
|
4845
5042
|
enum ReachPlanNetwork {
|
|
4846
5043
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -4851,7 +5048,7 @@ export declare namespace enums {
|
|
|
4851
5048
|
}
|
|
4852
5049
|
/**
|
|
4853
5050
|
* @name ReachPlanPlannableUserListStatusEnum.ReachPlanPlannableUserListStatus
|
|
4854
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
5051
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/ReachPlanPlannableUserListStatusEnum.ReachPlanPlannableUserListStatus
|
|
4855
5052
|
*/
|
|
4856
5053
|
enum ReachPlanPlannableUserListStatus {
|
|
4857
5054
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -4861,7 +5058,7 @@ export declare namespace enums {
|
|
|
4861
5058
|
}
|
|
4862
5059
|
/**
|
|
4863
5060
|
* @name ReachPlanSurfaceEnum.ReachPlanSurface
|
|
4864
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
5061
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/ReachPlanSurfaceEnum.ReachPlanSurface
|
|
4865
5062
|
*/
|
|
4866
5063
|
enum ReachPlanSurface {
|
|
4867
5064
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -4878,7 +5075,7 @@ export declare namespace enums {
|
|
|
4878
5075
|
}
|
|
4879
5076
|
/**
|
|
4880
5077
|
* @name RecommendationSubscriptionStatusEnum.RecommendationSubscriptionStatus
|
|
4881
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
5078
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/RecommendationSubscriptionStatusEnum.RecommendationSubscriptionStatus
|
|
4882
5079
|
*/
|
|
4883
5080
|
enum RecommendationSubscriptionStatus {
|
|
4884
5081
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -4888,7 +5085,7 @@ export declare namespace enums {
|
|
|
4888
5085
|
}
|
|
4889
5086
|
/**
|
|
4890
5087
|
* @name RegulatoryFeeTypeEnum.RegulatoryFeeType
|
|
4891
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
5088
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/RegulatoryFeeTypeEnum.RegulatoryFeeType
|
|
4892
5089
|
*/
|
|
4893
5090
|
enum RegulatoryFeeType {
|
|
4894
5091
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -4906,7 +5103,7 @@ export declare namespace enums {
|
|
|
4906
5103
|
}
|
|
4907
5104
|
/**
|
|
4908
5105
|
* @name ResourceChangeOperationEnum.ResourceChangeOperation
|
|
4909
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
5106
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/ResourceChangeOperationEnum.ResourceChangeOperation
|
|
4910
5107
|
*/
|
|
4911
5108
|
enum ResourceChangeOperation {
|
|
4912
5109
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -4917,7 +5114,7 @@ export declare namespace enums {
|
|
|
4917
5114
|
}
|
|
4918
5115
|
/**
|
|
4919
5116
|
* @name ResourceLimitTypeEnum.ResourceLimitType
|
|
4920
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
5117
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/ResourceLimitTypeEnum.ResourceLimitType
|
|
4921
5118
|
*/
|
|
4922
5119
|
enum ResourceLimitType {
|
|
4923
5120
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -5072,7 +5269,7 @@ export declare namespace enums {
|
|
|
5072
5269
|
}
|
|
5073
5270
|
/**
|
|
5074
5271
|
* @name ResponseContentTypeEnum.ResponseContentType
|
|
5075
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
5272
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/ResponseContentTypeEnum.ResponseContentType
|
|
5076
5273
|
*/
|
|
5077
5274
|
enum ResponseContentType {
|
|
5078
5275
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -5081,7 +5278,7 @@ export declare namespace enums {
|
|
|
5081
5278
|
}
|
|
5082
5279
|
/**
|
|
5083
5280
|
* @name SeasonalityEventScopeEnum.SeasonalityEventScope
|
|
5084
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
5281
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/SeasonalityEventScopeEnum.SeasonalityEventScope
|
|
5085
5282
|
*/
|
|
5086
5283
|
enum SeasonalityEventScope {
|
|
5087
5284
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -5092,7 +5289,7 @@ export declare namespace enums {
|
|
|
5092
5289
|
}
|
|
5093
5290
|
/**
|
|
5094
5291
|
* @name SeasonalityEventStatusEnum.SeasonalityEventStatus
|
|
5095
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
5292
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/SeasonalityEventStatusEnum.SeasonalityEventStatus
|
|
5096
5293
|
*/
|
|
5097
5294
|
enum SeasonalityEventStatus {
|
|
5098
5295
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -5100,9 +5297,20 @@ export declare namespace enums {
|
|
|
5100
5297
|
ENABLED = 2,// ENABLED
|
|
5101
5298
|
REMOVED = 4
|
|
5102
5299
|
}
|
|
5300
|
+
/**
|
|
5301
|
+
* @name SentimentEnum.Sentiment
|
|
5302
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/SentimentEnum.Sentiment
|
|
5303
|
+
*/
|
|
5304
|
+
enum Sentiment {
|
|
5305
|
+
UNSPECIFIED = 0,// UNSPECIFIED
|
|
5306
|
+
UNKNOWN = 1,// UNKNOWN
|
|
5307
|
+
SENTIMENT_NEUTRAL = 2,// SENTIMENT_NEUTRAL
|
|
5308
|
+
SENTIMENT_POSITIVE = 3,// SENTIMENT_POSITIVE
|
|
5309
|
+
SENTIMENT_NEGATIVE = 4
|
|
5310
|
+
}
|
|
5103
5311
|
/**
|
|
5104
5312
|
* @name SharedSetStatusEnum.SharedSetStatus
|
|
5105
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
5313
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/SharedSetStatusEnum.SharedSetStatus
|
|
5106
5314
|
*/
|
|
5107
5315
|
enum SharedSetStatus {
|
|
5108
5316
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -5112,7 +5320,7 @@ export declare namespace enums {
|
|
|
5112
5320
|
}
|
|
5113
5321
|
/**
|
|
5114
5322
|
* @name SharedSetTypeEnum.SharedSetType
|
|
5115
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
5323
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/SharedSetTypeEnum.SharedSetType
|
|
5116
5324
|
*/
|
|
5117
5325
|
enum SharedSetType {
|
|
5118
5326
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -5127,7 +5335,7 @@ export declare namespace enums {
|
|
|
5127
5335
|
}
|
|
5128
5336
|
/**
|
|
5129
5337
|
* @name ShoppingAddProductsToCampaignRecommendationEnum.ShoppingAddProductsToCampaignRecommendation
|
|
5130
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
5338
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/ShoppingAddProductsToCampaignRecommendationEnum.ShoppingAddProductsToCampaignRecommendation
|
|
5131
5339
|
*/
|
|
5132
5340
|
enum ShoppingAddProductsToCampaignRecommendation {
|
|
5133
5341
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -5139,7 +5347,7 @@ export declare namespace enums {
|
|
|
5139
5347
|
}
|
|
5140
5348
|
/**
|
|
5141
5349
|
* @name SimulationModificationMethodEnum.SimulationModificationMethod
|
|
5142
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
5350
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/SimulationModificationMethodEnum.SimulationModificationMethod
|
|
5143
5351
|
*/
|
|
5144
5352
|
enum SimulationModificationMethod {
|
|
5145
5353
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -5150,7 +5358,7 @@ export declare namespace enums {
|
|
|
5150
5358
|
}
|
|
5151
5359
|
/**
|
|
5152
5360
|
* @name SimulationTypeEnum.SimulationType
|
|
5153
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
5361
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/SimulationTypeEnum.SimulationType
|
|
5154
5362
|
*/
|
|
5155
5363
|
enum SimulationType {
|
|
5156
5364
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -5166,7 +5374,7 @@ export declare namespace enums {
|
|
|
5166
5374
|
}
|
|
5167
5375
|
/**
|
|
5168
5376
|
* @name SmartCampaignNotEligibleReasonEnum.SmartCampaignNotEligibleReason
|
|
5169
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
5377
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/SmartCampaignNotEligibleReasonEnum.SmartCampaignNotEligibleReason
|
|
5170
5378
|
*/
|
|
5171
5379
|
enum SmartCampaignNotEligibleReason {
|
|
5172
5380
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -5178,7 +5386,7 @@ export declare namespace enums {
|
|
|
5178
5386
|
}
|
|
5179
5387
|
/**
|
|
5180
5388
|
* @name SmartCampaignStatusEnum.SmartCampaignStatus
|
|
5181
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
5389
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/SmartCampaignStatusEnum.SmartCampaignStatus
|
|
5182
5390
|
*/
|
|
5183
5391
|
enum SmartCampaignStatus {
|
|
5184
5392
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -5192,7 +5400,7 @@ export declare namespace enums {
|
|
|
5192
5400
|
}
|
|
5193
5401
|
/**
|
|
5194
5402
|
* @name SpendingLimitTypeEnum.SpendingLimitType
|
|
5195
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
5403
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/SpendingLimitTypeEnum.SpendingLimitType
|
|
5196
5404
|
*/
|
|
5197
5405
|
enum SpendingLimitType {
|
|
5198
5406
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -5201,7 +5409,7 @@ export declare namespace enums {
|
|
|
5201
5409
|
}
|
|
5202
5410
|
/**
|
|
5203
5411
|
* @name SummaryRowSettingEnum.SummaryRowSetting
|
|
5204
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
5412
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/SummaryRowSettingEnum.SummaryRowSetting
|
|
5205
5413
|
*/
|
|
5206
5414
|
enum SummaryRowSetting {
|
|
5207
5415
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -5210,9 +5418,300 @@ export declare namespace enums {
|
|
|
5210
5418
|
SUMMARY_ROW_WITH_RESULTS = 3,// SUMMARY_ROW_WITH_RESULTS
|
|
5211
5419
|
SUMMARY_ROW_ONLY = 4
|
|
5212
5420
|
}
|
|
5421
|
+
/**
|
|
5422
|
+
* @name SurveyIntendedActionEnum.SurveyIntendedAction
|
|
5423
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/SurveyIntendedActionEnum.SurveyIntendedAction
|
|
5424
|
+
*/
|
|
5425
|
+
enum SurveyIntendedAction {
|
|
5426
|
+
UNSPECIFIED = 0,// UNSPECIFIED
|
|
5427
|
+
UNKNOWN = 1,// UNKNOWN
|
|
5428
|
+
APPLY_FOR = 2,// APPLY_FOR
|
|
5429
|
+
APPLY_TO_WORK_FOR = 3,// APPLY_TO_WORK_FOR
|
|
5430
|
+
ATTEND = 4,// ATTEND
|
|
5431
|
+
BOOK = 5,// BOOK
|
|
5432
|
+
BOOK_WITH = 6,// BOOK_WITH
|
|
5433
|
+
BUY = 7,// BUY
|
|
5434
|
+
BUY_CONTENT_FROM = 8,// BUY_CONTENT_FROM
|
|
5435
|
+
BUY_TICKETS_FOR = 9,// BUY_TICKETS_FOR
|
|
5436
|
+
CARE_ABOUT = 10,// CARE_ABOUT
|
|
5437
|
+
CHOOSE = 11,// CHOOSE
|
|
5438
|
+
DONATE_TO = 12,// DONATE_TO
|
|
5439
|
+
DOWNLOAD = 13,// DOWNLOAD
|
|
5440
|
+
DOWNLOAD_FROM = 14,// DOWNLOAD_FROM
|
|
5441
|
+
EAT = 15,// EAT
|
|
5442
|
+
EAT_AT = 16,// EAT_AT
|
|
5443
|
+
HAVE_UNFAVORABLE_OPINION_OF = 17,// HAVE_UNFAVORABLE_OPINION_OF
|
|
5444
|
+
JOIN = 18,// JOIN
|
|
5445
|
+
LEARN = 19,// LEARN
|
|
5446
|
+
LISTEN_TO = 20,// LISTEN_TO
|
|
5447
|
+
NONE = 21,// NONE
|
|
5448
|
+
ORDER_FROM = 22,// ORDER_FROM
|
|
5449
|
+
PARTICIPATE_IN = 23,// PARTICIPATE_IN
|
|
5450
|
+
PLAY = 24,// PLAY
|
|
5451
|
+
PLAY_AT = 25,// PLAY_AT
|
|
5452
|
+
PLAY_ON = 26,// PLAY_ON
|
|
5453
|
+
RENT = 27,// RENT
|
|
5454
|
+
SEE = 28,// SEE
|
|
5455
|
+
SEE_IN_THEATERS = 29,// SEE_IN_THEATERS
|
|
5456
|
+
SHOP = 30,// SHOP
|
|
5457
|
+
SIGN_UP_FOR = 31,// SIGN_UP_FOR
|
|
5458
|
+
SUBSCRIBE_TO = 32,// SUBSCRIBE_TO
|
|
5459
|
+
TAKE_ACTION_ON = 33,// TAKE_ACTION_ON
|
|
5460
|
+
USE = 34,// USE
|
|
5461
|
+
VISIT = 35,// VISIT
|
|
5462
|
+
VOTE_FOR = 36,// VOTE_FOR
|
|
5463
|
+
WATCH = 37,// WATCH
|
|
5464
|
+
WATCH_IN_THEATERS = 38
|
|
5465
|
+
}
|
|
5466
|
+
/**
|
|
5467
|
+
* @name SurveyLiftFlightTargetResponseModeEnum.SurveyLiftFlightTargetResponseMode
|
|
5468
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/SurveyLiftFlightTargetResponseModeEnum.SurveyLiftFlightTargetResponseMode
|
|
5469
|
+
*/
|
|
5470
|
+
enum SurveyLiftFlightTargetResponseMode {
|
|
5471
|
+
UNSPECIFIED = 0,// UNSPECIFIED
|
|
5472
|
+
UNKNOWN = 1,// UNKNOWN
|
|
5473
|
+
STANDARD = 2,// STANDARD
|
|
5474
|
+
BOOST = 3
|
|
5475
|
+
}
|
|
5476
|
+
/**
|
|
5477
|
+
* @name SurveySubjectTypeEnum.SurveySubjectType
|
|
5478
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/SurveySubjectTypeEnum.SurveySubjectType
|
|
5479
|
+
*/
|
|
5480
|
+
enum SurveySubjectType {
|
|
5481
|
+
UNSPECIFIED = 0,// UNSPECIFIED
|
|
5482
|
+
UNKNOWN = 1,// UNKNOWN
|
|
5483
|
+
GENERIC_BRAND = 2,// GENERIC_BRAND
|
|
5484
|
+
GENERIC_PRODUCT = 3,// GENERIC_PRODUCT
|
|
5485
|
+
GENERIC_SERVICE = 4,// GENERIC_SERVICE
|
|
5486
|
+
APP = 5,// APP
|
|
5487
|
+
APPS_DATING_SERVICES = 6,// APPS_DATING_SERVICES
|
|
5488
|
+
APPS_PODCASTS = 7,// APPS_PODCASTS
|
|
5489
|
+
APPS_DIGITAL_COMICS = 8,// APPS_DIGITAL_COMICS
|
|
5490
|
+
AUTOMOTIVE_BATTERY = 9,// AUTOMOTIVE_BATTERY
|
|
5491
|
+
AUTOMOTIVE_BRAND = 10,// AUTOMOTIVE_BRAND
|
|
5492
|
+
AUTOMOTIVE_CAR_RENTAL = 11,// AUTOMOTIVE_CAR_RENTAL
|
|
5493
|
+
AUTOMOTIVE_CAR_SERVICE = 12,// AUTOMOTIVE_CAR_SERVICE
|
|
5494
|
+
AUTOMOTIVE_ELECTRIC_CAR_BRAND = 13,// AUTOMOTIVE_ELECTRIC_CAR_BRAND
|
|
5495
|
+
AUTOMOTIVE_GAS_STATIONS = 14,// AUTOMOTIVE_GAS_STATIONS
|
|
5496
|
+
AUTOMOTIVE_MOTORCYCLE = 15,// AUTOMOTIVE_MOTORCYCLE
|
|
5497
|
+
AUTOMOTIVE_OIL = 16,// AUTOMOTIVE_OIL
|
|
5498
|
+
AUTOMOTIVE_PRODUCT = 17,// AUTOMOTIVE_PRODUCT
|
|
5499
|
+
AUTOMOTIVE_TIRES_BRAND = 18,// AUTOMOTIVE_TIRES_BRAND
|
|
5500
|
+
BIM_COMPANY = 19,// BIM_COMPANY
|
|
5501
|
+
BIM_ENTERPRISE_SERVICES_COMPANY = 20,// BIM_ENTERPRISE_SERVICES_COMPANY
|
|
5502
|
+
BIM_JOB = 21,// BIM_JOB
|
|
5503
|
+
BIM_MARKETING_COMPANY = 22,// BIM_MARKETING_COMPANY
|
|
5504
|
+
BIM_RECRUITING = 23,// BIM_RECRUITING
|
|
5505
|
+
BIM_SHIPPING = 24,// BIM_SHIPPING
|
|
5506
|
+
CPG_BABY_CARE_BRAND = 25,// CPG_BABY_CARE_BRAND
|
|
5507
|
+
CPG_BABY_CARE_PRODUCT = 26,// CPG_BABY_CARE_PRODUCT
|
|
5508
|
+
CPG_BEAUTY_BRAND = 27,// CPG_BEAUTY_BRAND
|
|
5509
|
+
CPG_BEAUTY_PRODUCT = 28,// CPG_BEAUTY_PRODUCT
|
|
5510
|
+
CPG_BEAUTY_AND_PERSONAL_CARE_BRAND = 29,// CPG_BEAUTY_AND_PERSONAL_CARE_BRAND
|
|
5511
|
+
CPG_BEAUTY_AND_PERSONAL_CARE_PRODUCT = 30,// CPG_BEAUTY_AND_PERSONAL_CARE_PRODUCT
|
|
5512
|
+
CPG_BODY_WASH_BRAND = 31,// CPG_BODY_WASH_BRAND
|
|
5513
|
+
CPG_BODY_WASH_PRODUCT = 32,// CPG_BODY_WASH_PRODUCT
|
|
5514
|
+
CPG_DRAIN_CLEANERS = 33,// CPG_DRAIN_CLEANERS
|
|
5515
|
+
CPG_FRAGRANCE_BRAND = 34,// CPG_FRAGRANCE_BRAND
|
|
5516
|
+
CPG_FRAGRANCE_PRODUCT = 35,// CPG_FRAGRANCE_PRODUCT
|
|
5517
|
+
CPG_HAIR_CARE_BRAND = 36,// CPG_HAIR_CARE_BRAND
|
|
5518
|
+
CPG_HAIR_CARE_PRODUCT = 37,// CPG_HAIR_CARE_PRODUCT
|
|
5519
|
+
CPG_HOUSEHOLD_CLEANING_BRAND = 38,// CPG_HOUSEHOLD_CLEANING_BRAND
|
|
5520
|
+
CPG_HOUSEHOLD_CLEANING_PRODUCT = 39,// CPG_HOUSEHOLD_CLEANING_PRODUCT
|
|
5521
|
+
CPG_LAUNDRY_BRAND = 40,// CPG_LAUNDRY_BRAND
|
|
5522
|
+
CPG_MAKE_UP_BRAND = 41,// CPG_MAKE_UP_BRAND
|
|
5523
|
+
CPG_MAKE_UP_PRODUCT = 42,// CPG_MAKE_UP_PRODUCT
|
|
5524
|
+
CPG_MOUTHWASH_BRAND = 43,// CPG_MOUTHWASH_BRAND
|
|
5525
|
+
CPG_OFFICE_SUPPLIES_BRAND = 44,// CPG_OFFICE_SUPPLIES_BRAND
|
|
5526
|
+
CPG_OFFICE_SUPPLIES_PRODUCT = 45,// CPG_OFFICE_SUPPLIES_PRODUCT
|
|
5527
|
+
CPG_ORAL_CARE_BRAND = 46,// CPG_ORAL_CARE_BRAND
|
|
5528
|
+
CPG_PERSONAL_CARE_BRAND = 47,// CPG_PERSONAL_CARE_BRAND
|
|
5529
|
+
CPG_PERSONAL_CARE_PRODUCT = 48,// CPG_PERSONAL_CARE_PRODUCT
|
|
5530
|
+
CPG_SKIN_CARE_BRAND = 49,// CPG_SKIN_CARE_BRAND
|
|
5531
|
+
CPG_SKIN_CARE_PRODUCT = 50,// CPG_SKIN_CARE_PRODUCT
|
|
5532
|
+
EDUCATION_BUSINESS_PROGRAMS = 51,// EDUCATION_BUSINESS_PROGRAMS
|
|
5533
|
+
EDUCATION_MASTERS_PROGRAMS = 52,// EDUCATION_MASTERS_PROGRAMS
|
|
5534
|
+
EDUCATION_NURSING_PROGRAMS = 53,// EDUCATION_NURSING_PROGRAMS
|
|
5535
|
+
EDUCATION_IT_PROGRAMS = 54,// EDUCATION_IT_PROGRAMS
|
|
5536
|
+
EDUCATION_OFFLINE = 55,// EDUCATION_OFFLINE
|
|
5537
|
+
EDUCATION_ONLINE = 56,// EDUCATION_ONLINE
|
|
5538
|
+
EDUCATION_PROGRAM = 57,// EDUCATION_PROGRAM
|
|
5539
|
+
EDUCATION_TEST_PREPARATION = 58,// EDUCATION_TEST_PREPARATION
|
|
5540
|
+
FBR_BEER_BRAND = 59,// FBR_BEER_BRAND
|
|
5541
|
+
FBR_BEVERAGE_BRAND = 60,// FBR_BEVERAGE_BRAND
|
|
5542
|
+
FBR_BEVERAGE_PRODUCT = 61,// FBR_BEVERAGE_PRODUCT
|
|
5543
|
+
FBR_BREAKFAST_FOOD_BRAND = 62,// FBR_BREAKFAST_FOOD_BRAND
|
|
5544
|
+
FBR_BREAKFAST_FOOD_PRODUCT = 63,// FBR_BREAKFAST_FOOD_PRODUCT
|
|
5545
|
+
FBR_CANDY = 64,// FBR_CANDY
|
|
5546
|
+
FBR_CHEESE = 65,// FBR_CHEESE
|
|
5547
|
+
FBR_CHIPS_BRAND = 66,// FBR_CHIPS_BRAND
|
|
5548
|
+
FBR_CHIPS_PRODUCT = 67,// FBR_CHIPS_PRODUCT
|
|
5549
|
+
FBR_CHOCOLATE_BRAND = 68,// FBR_CHOCOLATE_BRAND
|
|
5550
|
+
FBR_CHOCOLATE_PRODUCT = 69,// FBR_CHOCOLATE_PRODUCT
|
|
5551
|
+
FBR_COFFEE_BRAND = 70,// FBR_COFFEE_BRAND
|
|
5552
|
+
FBR_COFFEE_PRODUCT = 71,// FBR_COFFEE_PRODUCT
|
|
5553
|
+
FBR_COLD_DRINK_BRAND = 72,// FBR_COLD_DRINK_BRAND
|
|
5554
|
+
FBR_COLD_DRINK_PRODUCT = 73,// FBR_COLD_DRINK_PRODUCT
|
|
5555
|
+
FBR_COOKIES = 74,// FBR_COOKIES
|
|
5556
|
+
FBR_DOGFOOD_BRAND = 75,// FBR_DOGFOOD_BRAND
|
|
5557
|
+
FBR_DOGFOOD_PRODUCT = 76,// FBR_DOGFOOD_PRODUCT
|
|
5558
|
+
FBR_DOG_TREATS_BRAND = 77,// FBR_DOG_TREATS_BRAND
|
|
5559
|
+
FBR_FOOD_BRAND = 78,// FBR_FOOD_BRAND
|
|
5560
|
+
FBR_FOOD_DELIVERY_BRAND = 79,// FBR_FOOD_DELIVERY_BRAND
|
|
5561
|
+
FBR_FOOD_PRODUCT = 80,// FBR_FOOD_PRODUCT
|
|
5562
|
+
FBR_ICE_CREAM_BRAND = 81,// FBR_ICE_CREAM_BRAND
|
|
5563
|
+
FBR_ICE_CREAM_PRODUCT = 82,// FBR_ICE_CREAM_PRODUCT
|
|
5564
|
+
FBR_PET_FOOD_BRAND = 83,// FBR_PET_FOOD_BRAND
|
|
5565
|
+
FBR_PET_FOOD_PRODUCT = 84,// FBR_PET_FOOD_PRODUCT
|
|
5566
|
+
FBR_PET_SUPPLY_BRAND = 85,// FBR_PET_SUPPLY_BRAND
|
|
5567
|
+
FBR_PET_SUPPLY_PRODUCT = 86,// FBR_PET_SUPPLY_PRODUCT
|
|
5568
|
+
FBR_RESTAURANT = 87,// FBR_RESTAURANT
|
|
5569
|
+
FBR_RESTAURANT_DELIVERY_SERVICE_BRAND = 88,// FBR_RESTAURANT_DELIVERY_SERVICE_BRAND
|
|
5570
|
+
FBR_RESTAURANT_DELIVERY_SERVICE_PRODUCT = 89,// FBR_RESTAURANT_DELIVERY_SERVICE_PRODUCT
|
|
5571
|
+
FBR_SNACKS_BRAND = 90,// FBR_SNACKS_BRAND
|
|
5572
|
+
FBR_SNACKS_PRODUCT = 91,// FBR_SNACKS_PRODUCT
|
|
5573
|
+
FBR_SODA_BRAND = 92,// FBR_SODA_BRAND
|
|
5574
|
+
FBR_SODA_PRODUCT = 93,// FBR_SODA_PRODUCT
|
|
5575
|
+
FBR_SPIRIT_BRAND = 94,// FBR_SPIRIT_BRAND
|
|
5576
|
+
FBR_SPIRIT_PRODUCT = 95,// FBR_SPIRIT_PRODUCT
|
|
5577
|
+
FBR_WHEY_PROTEIN_BRAND = 96,// FBR_WHEY_PROTEIN_BRAND
|
|
5578
|
+
FBR_WINE = 97,// FBR_WINE
|
|
5579
|
+
FINANCE_ACCOUNTING_BRAND = 98,// FINANCE_ACCOUNTING_BRAND
|
|
5580
|
+
FINANCE_BANK = 99,// FINANCE_BANK
|
|
5581
|
+
FINANCE_CREDIT_CARD_BRAND = 100,// FINANCE_CREDIT_CARD_BRAND
|
|
5582
|
+
FINANCE_CREDIT_CARD_PRODUCT = 101,// FINANCE_CREDIT_CARD_PRODUCT
|
|
5583
|
+
FINANCE_FINANCIAL_SERVICES = 102,// FINANCE_FINANCIAL_SERVICES
|
|
5584
|
+
FINANCE_INSURANCE = 103,// FINANCE_INSURANCE
|
|
5585
|
+
FINANCE_INVESTMENT_SERVICES = 104,// FINANCE_INVESTMENT_SERVICES
|
|
5586
|
+
FINANCE_LOAN_PROVIDER = 105,// FINANCE_LOAN_PROVIDER
|
|
5587
|
+
FINANCE_MORTGAGE_COMPANY = 106,// FINANCE_MORTGAGE_COMPANY
|
|
5588
|
+
FINANCE_PAYMENTS_PROCESSING = 107,// FINANCE_PAYMENTS_PROCESSING
|
|
5589
|
+
FINANCE_PAYMENTS_SYSTEMS = 108,// FINANCE_PAYMENTS_SYSTEMS
|
|
5590
|
+
FINANCE_TAXES_BRAND = 109,// FINANCE_TAXES_BRAND
|
|
5591
|
+
FINANCE_TAXES_PRODUCT = 110,// FINANCE_TAXES_PRODUCT
|
|
5592
|
+
GAMBLING_CASINO = 111,// GAMBLING_CASINO
|
|
5593
|
+
GAMBLING_DAILY_FANTASY_SPORT = 112,// GAMBLING_DAILY_FANTASY_SPORT
|
|
5594
|
+
GAMBLING_GAMBLING_SITE = 113,// GAMBLING_GAMBLING_SITE
|
|
5595
|
+
GAMBLING_LOTTERY = 114,// GAMBLING_LOTTERY
|
|
5596
|
+
GAMBLING_SPORTS_BETTING_SITE = 115,// GAMBLING_SPORTS_BETTING_SITE
|
|
5597
|
+
GOVERNMENT_ANTI_SMOKING = 116,// GOVERNMENT_ANTI_SMOKING
|
|
5598
|
+
GOVERNMENT_MILITARY = 117,// GOVERNMENT_MILITARY
|
|
5599
|
+
GOVERNMENT_ORGANIZATION = 118,// GOVERNMENT_ORGANIZATION
|
|
5600
|
+
GOVERNMENT_PROGRAM = 119,// GOVERNMENT_PROGRAM
|
|
5601
|
+
GOVERNMENT_PUBLIC_HEALTH_BEHAVIORS = 120,// GOVERNMENT_PUBLIC_HEALTH_BEHAVIORS
|
|
5602
|
+
GOVERNMENT_PUBLIC_HEALTH_ISSUE = 121,// GOVERNMENT_PUBLIC_HEALTH_ISSUE
|
|
5603
|
+
GOVERNMENT_PUBLIC_HEALTH_TOPIC = 122,// GOVERNMENT_PUBLIC_HEALTH_TOPIC
|
|
5604
|
+
GOVERNMENT_SERVICE = 123,// GOVERNMENT_SERVICE
|
|
5605
|
+
HEALTHCARE_GYMS = 124,// HEALTHCARE_GYMS
|
|
5606
|
+
HEALTHCARE_HEALTH_INSURANCE_BRAND = 125,// HEALTHCARE_HEALTH_INSURANCE_BRAND
|
|
5607
|
+
HEALTHCARE_MULTIVITAMINS = 126,// HEALTHCARE_MULTIVITAMINS
|
|
5608
|
+
HEALTHCARE_SPORTS_SUPPLEMENTS = 127,// HEALTHCARE_SPORTS_SUPPLEMENTS
|
|
5609
|
+
HEALTHCARE_WEIGHT_LOSS_BRAND = 128,// HEALTHCARE_WEIGHT_LOSS_BRAND
|
|
5610
|
+
HEALTHCARE_WEIGHT_LOSS_PRODUCT = 129,// HEALTHCARE_WEIGHT_LOSS_PRODUCT
|
|
5611
|
+
HOME_SERVICES_CABLE_TV = 130,// HOME_SERVICES_CABLE_TV
|
|
5612
|
+
HOME_SERVICES_ENERGY_BRAND = 131,// HOME_SERVICES_ENERGY_BRAND
|
|
5613
|
+
HOME_SERVICES_HOUSEHOLD_SERVICES_COMPANY = 132,// HOME_SERVICES_HOUSEHOLD_SERVICES_COMPANY
|
|
5614
|
+
HOME_SERVICES_INTERNET_SERVICE = 133,// HOME_SERVICES_INTERNET_SERVICE
|
|
5615
|
+
HOME_SERVICES_MOBILE_PHONE = 134,// HOME_SERVICES_MOBILE_PHONE
|
|
5616
|
+
HOME_SERVICES_PAY_TV_CHANNEL = 135,// HOME_SERVICES_PAY_TV_CHANNEL
|
|
5617
|
+
HOME_SERVICES_PAY_TV_NETWORK = 136,// HOME_SERVICES_PAY_TV_NETWORK
|
|
5618
|
+
LOCAL_CHARITY = 137,// LOCAL_CHARITY
|
|
5619
|
+
LOCAL_CLASSIFIEDS_SITE = 138,// LOCAL_CLASSIFIEDS_SITE
|
|
5620
|
+
LOCAL_FLOWER_BRAND = 139,// LOCAL_FLOWER_BRAND
|
|
5621
|
+
LOCAL_JOB_CLASSIFIEDS_SITE = 140,// LOCAL_JOB_CLASSIFIEDS_SITE
|
|
5622
|
+
LOCAL_LAW_FIRMS = 141,// LOCAL_LAW_FIRMS
|
|
5623
|
+
LOCAL_REAL_ESTATE_SITE = 142,// LOCAL_REAL_ESTATE_SITE
|
|
5624
|
+
MEDIA_AND_ENTERTAINMENT_DOWNLOAD_SITE = 143,// MEDIA_AND_ENTERTAINMENT_DOWNLOAD_SITE
|
|
5625
|
+
MEDIA_AND_ENTERTAINMENT_DVD = 144,// MEDIA_AND_ENTERTAINMENT_DVD
|
|
5626
|
+
MEDIA_AND_ENTERTAINMENT_EVENT = 145,// MEDIA_AND_ENTERTAINMENT_EVENT
|
|
5627
|
+
MEDIA_AND_ENTERTAINMENT_GAME = 146,// MEDIA_AND_ENTERTAINMENT_GAME
|
|
5628
|
+
MEDIA_AND_ENTERTAINMENT_GAMING_PRODUCTS = 147,// MEDIA_AND_ENTERTAINMENT_GAMING_PRODUCTS
|
|
5629
|
+
MEDIA_AND_ENTERTAINMENT_LIVE_EVENT = 148,// MEDIA_AND_ENTERTAINMENT_LIVE_EVENT
|
|
5630
|
+
MEDIA_AND_ENTERTAINMENT_MOBILE_GAME = 149,// MEDIA_AND_ENTERTAINMENT_MOBILE_GAME
|
|
5631
|
+
MEDIA_AND_ENTERTAINMENT_MOVIE = 150,// MEDIA_AND_ENTERTAINMENT_MOVIE
|
|
5632
|
+
MEDIA_AND_ENTERTAINMENT_MOVIE_DIGITAL_DOWNLOAD = 151,// MEDIA_AND_ENTERTAINMENT_MOVIE_DIGITAL_DOWNLOAD
|
|
5633
|
+
MEDIA_AND_ENTERTAINMENT_MUSIC_ARTIST = 152,// MEDIA_AND_ENTERTAINMENT_MUSIC_ARTIST
|
|
5634
|
+
MEDIA_AND_ENTERTAINMENT_MUSIC_RELEASES = 153,// MEDIA_AND_ENTERTAINMENT_MUSIC_RELEASES
|
|
5635
|
+
MEDIA_AND_ENTERTAINMENT_PLAYLISTS = 154,// MEDIA_AND_ENTERTAINMENT_PLAYLISTS
|
|
5636
|
+
MEDIA_AND_ENTERTAINMENT_SHOW = 155,// MEDIA_AND_ENTERTAINMENT_SHOW
|
|
5637
|
+
MEDIA_AND_ENTERTAINMENT_SHOW_DIGITAL_DOWNLOAD = 156,// MEDIA_AND_ENTERTAINMENT_SHOW_DIGITAL_DOWNLOAD
|
|
5638
|
+
MEDIA_AND_ENTERTAINMENT_SPORTS = 157,// MEDIA_AND_ENTERTAINMENT_SPORTS
|
|
5639
|
+
MEDIA_AND_ENTERTAINMENT_STREAMING_SITE = 158,// MEDIA_AND_ENTERTAINMENT_STREAMING_SITE
|
|
5640
|
+
MEDIA_AND_ENTERTAINMENT_TITLE_DIGITAL_DOWNLOAD = 159,// MEDIA_AND_ENTERTAINMENT_TITLE_DIGITAL_DOWNLOAD
|
|
5641
|
+
MEDIA_AND_ENTERTAINMENT_TV_CHANNEL = 160,// MEDIA_AND_ENTERTAINMENT_TV_CHANNEL
|
|
5642
|
+
MEDIA_AND_ENTERTAINMENT_TV_SHOW = 161,// MEDIA_AND_ENTERTAINMENT_TV_SHOW
|
|
5643
|
+
MEDIA_AND_ENTERTAINMENT_TV_SHOW_DIGITAL_DOWNLOAD = 162,// MEDIA_AND_ENTERTAINMENT_TV_SHOW_DIGITAL_DOWNLOAD
|
|
5644
|
+
MEDIA_AND_ENTERTAINMENT_VIDEO_GAME = 163,// MEDIA_AND_ENTERTAINMENT_VIDEO_GAME
|
|
5645
|
+
MEDIA_AND_ENTERTAINMENT_VIDEO_GAME_DLC = 164,// MEDIA_AND_ENTERTAINMENT_VIDEO_GAME_DLC
|
|
5646
|
+
MEDIA_AND_ENTERTAINMENT_WEB_SERIES = 165,// MEDIA_AND_ENTERTAINMENT_WEB_SERIES
|
|
5647
|
+
OFFER = 166,// OFFER
|
|
5648
|
+
PHARMA_NON_MEDICAL_CONDITION_OTC_DRUG = 167,// PHARMA_NON_MEDICAL_CONDITION_OTC_DRUG
|
|
5649
|
+
POLITICS_CANDIDATE = 168,// POLITICS_CANDIDATE
|
|
5650
|
+
POLITICS_GET_OUT_THE_VOTE_NOVEMBER_ELECTIONS = 169,// POLITICS_GET_OUT_THE_VOTE_NOVEMBER_ELECTIONS
|
|
5651
|
+
POLITICS_GET_OUT_THE_VOTE_PRIMARY_ELECTIONS = 170,// POLITICS_GET_OUT_THE_VOTE_PRIMARY_ELECTIONS
|
|
5652
|
+
POLITICS_ISSUE = 171,// POLITICS_ISSUE
|
|
5653
|
+
POLITICS_UNFAVORABLE_CANDIDATE = 172,// POLITICS_UNFAVORABLE_CANDIDATE
|
|
5654
|
+
RETAIL_APPAREL = 173,// RETAIL_APPAREL
|
|
5655
|
+
RETAIL_BRICK_AND_MORTAR = 174,// RETAIL_BRICK_AND_MORTAR
|
|
5656
|
+
RETAIL_FURNITURE_BRAND = 175,// RETAIL_FURNITURE_BRAND
|
|
5657
|
+
RETAIL_FURNITURE_PRODUCT = 176,// RETAIL_FURNITURE_PRODUCT
|
|
5658
|
+
RETAIL_GIFTS_BRAND = 177,// RETAIL_GIFTS_BRAND
|
|
5659
|
+
RETAIL_GIFTS_PRODUCT = 178,// RETAIL_GIFTS_PRODUCT
|
|
5660
|
+
RETAIL_HOME_GOODS = 179,// RETAIL_HOME_GOODS
|
|
5661
|
+
RETAIL_JEWELRY_BRAND = 180,// RETAIL_JEWELRY_BRAND
|
|
5662
|
+
RETAIL_ONLINE_RETAILERS = 181,// RETAIL_ONLINE_RETAILERS
|
|
5663
|
+
RETAIL_SHOE_BRAND = 182,// RETAIL_SHOE_BRAND
|
|
5664
|
+
RETAIL_STORE = 183,// RETAIL_STORE
|
|
5665
|
+
RETAIL_TOY_SHOP = 184,// RETAIL_TOY_SHOP
|
|
5666
|
+
TECHNOLOGY_ARTIFICIAL_INTELLIGENCE_BRAND = 185,// TECHNOLOGY_ARTIFICIAL_INTELLIGENCE_BRAND
|
|
5667
|
+
TECHNOLOGY_ARTIFICIAL_INTELLIGENCE_PRODUCT = 186,// TECHNOLOGY_ARTIFICIAL_INTELLIGENCE_PRODUCT
|
|
5668
|
+
TECHNOLOGY_BRAND = 187,// TECHNOLOGY_BRAND
|
|
5669
|
+
TECHNOLOGY_FEATURE = 188,// TECHNOLOGY_FEATURE
|
|
5670
|
+
TECHNOLOGY_PRODUCT = 189,// TECHNOLOGY_PRODUCT
|
|
5671
|
+
TECHNOLOGY_CAMERA_BRAND = 190,// TECHNOLOGY_CAMERA_BRAND
|
|
5672
|
+
TECHNOLOGY_CAMERA_PRODUCT = 191,// TECHNOLOGY_CAMERA_PRODUCT
|
|
5673
|
+
TECHNOLOGY_CONTROL_PLANS = 192,// TECHNOLOGY_CONTROL_PLANS
|
|
5674
|
+
TECHNOLOGY_GAMING_BRAND = 193,// TECHNOLOGY_GAMING_BRAND
|
|
5675
|
+
TECHNOLOGY_HOME_APPLIANCE_BRAND = 194,// TECHNOLOGY_HOME_APPLIANCE_BRAND
|
|
5676
|
+
TECHNOLOGY_HOME_APPLIANCE_PRODUCT = 195,// TECHNOLOGY_HOME_APPLIANCE_PRODUCT
|
|
5677
|
+
TECHNOLOGY_LAPTOP_BRAND = 196,// TECHNOLOGY_LAPTOP_BRAND
|
|
5678
|
+
TECHNOLOGY_LAPTOP_PRODUCT = 197,// TECHNOLOGY_LAPTOP_PRODUCT
|
|
5679
|
+
TECHNOLOGY_MOBILE_PHONE_PLANS = 198,// TECHNOLOGY_MOBILE_PHONE_PLANS
|
|
5680
|
+
TECHNOLOGY_ONLINE_SAFETY_BRAND = 199,// TECHNOLOGY_ONLINE_SAFETY_BRAND
|
|
5681
|
+
TECHNOLOGY_ONLINE_SAFETY_PRODUCT = 200,// TECHNOLOGY_ONLINE_SAFETY_PRODUCT
|
|
5682
|
+
TECHNOLOGY_OPERATING_SYSTEM = 201,// TECHNOLOGY_OPERATING_SYSTEM
|
|
5683
|
+
TECHNOLOGY_POSTPAID_TELCO_PLAN = 202,// TECHNOLOGY_POSTPAID_TELCO_PLAN
|
|
5684
|
+
TECHNOLOGY_PREPAID_TELCO_PLAN = 203,// TECHNOLOGY_PREPAID_TELCO_PLAN
|
|
5685
|
+
TECHNOLOGY_PRINTER_BRAND = 204,// TECHNOLOGY_PRINTER_BRAND
|
|
5686
|
+
TECHNOLOGY_SEARCH_ENGINE = 205,// TECHNOLOGY_SEARCH_ENGINE
|
|
5687
|
+
TECHNOLOGY_SMALL_HOME_APPLIANCE_BRAND = 206,// TECHNOLOGY_SMALL_HOME_APPLIANCE_BRAND
|
|
5688
|
+
TECHNOLOGY_SMALL_HOME_APPLIANCE_PRODUCT = 207,// TECHNOLOGY_SMALL_HOME_APPLIANCE_PRODUCT
|
|
5689
|
+
TECHNOLOGY_SMART_HOME_DEVICE = 208,// TECHNOLOGY_SMART_HOME_DEVICE
|
|
5690
|
+
TECHNOLOGY_SMARTPHONE_BRAND = 209,// TECHNOLOGY_SMARTPHONE_BRAND
|
|
5691
|
+
TECHNOLOGY_SMARTPHONE_PRODUCT = 210,// TECHNOLOGY_SMARTPHONE_PRODUCT
|
|
5692
|
+
TECHNOLOGY_SOCIAL_MEDIA = 211,// TECHNOLOGY_SOCIAL_MEDIA
|
|
5693
|
+
TECHNOLOGY_TABLET_BRAND = 212,// TECHNOLOGY_TABLET_BRAND
|
|
5694
|
+
TECHNOLOGY_TABLET_PRODUCT = 213,// TECHNOLOGY_TABLET_PRODUCT
|
|
5695
|
+
TECHNOLOGY_TELECOM_FIBER_OPTIC_INTERNET = 214,// TECHNOLOGY_TELECOM_FIBER_OPTIC_INTERNET
|
|
5696
|
+
TECHNOLOGY_TELECOM_SERVICE_PACK = 215,// TECHNOLOGY_TELECOM_SERVICE_PACK
|
|
5697
|
+
TECHNOLOGY_TELCO_NETWORK = 216,// TECHNOLOGY_TELCO_NETWORK
|
|
5698
|
+
TECHNOLOGY_TV_BRAND = 217,// TECHNOLOGY_TV_BRAND
|
|
5699
|
+
TECHNOLOGY_TV_PRODUCT = 218,// TECHNOLOGY_TV_PRODUCT
|
|
5700
|
+
TECHNOLOGY_VIDEO_ON_DEMAND = 219,// TECHNOLOGY_VIDEO_ON_DEMAND
|
|
5701
|
+
TECHNOLOGY_WEARABLES_BRAND = 220,// TECHNOLOGY_WEARABLES_BRAND
|
|
5702
|
+
TECHNOLOGY_WEBSITE = 221,// TECHNOLOGY_WEBSITE
|
|
5703
|
+
TRAVEL_ACCOMMODATIONS = 222,// TRAVEL_ACCOMMODATIONS
|
|
5704
|
+
TRAVEL_AIRLINE = 223,// TRAVEL_AIRLINE
|
|
5705
|
+
TRAVEL_BOOKING_SERVICE = 224,// TRAVEL_BOOKING_SERVICE
|
|
5706
|
+
TRAVEL_CRUISES = 225,// TRAVEL_CRUISES
|
|
5707
|
+
TRAVEL_DESTINATION = 226,// TRAVEL_DESTINATION
|
|
5708
|
+
TRAVEL_HOTEL = 227,// TRAVEL_HOTEL
|
|
5709
|
+
TRAVEL_OPTION = 228,// TRAVEL_OPTION
|
|
5710
|
+
TRAVEL_VACATION_RENTAL_SERVICE = 229
|
|
5711
|
+
}
|
|
5213
5712
|
/**
|
|
5214
5713
|
* @name SystemManagedResourceSourceEnum.SystemManagedResourceSource
|
|
5215
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
5714
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/SystemManagedResourceSourceEnum.SystemManagedResourceSource
|
|
5216
5715
|
*/
|
|
5217
5716
|
enum SystemManagedResourceSource {
|
|
5218
5717
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -5221,7 +5720,7 @@ export declare namespace enums {
|
|
|
5221
5720
|
}
|
|
5222
5721
|
/**
|
|
5223
5722
|
* @name TargetCpaOptInRecommendationGoalEnum.TargetCpaOptInRecommendationGoal
|
|
5224
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
5723
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/TargetCpaOptInRecommendationGoalEnum.TargetCpaOptInRecommendationGoal
|
|
5225
5724
|
*/
|
|
5226
5725
|
enum TargetCpaOptInRecommendationGoal {
|
|
5227
5726
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -5233,7 +5732,7 @@ export declare namespace enums {
|
|
|
5233
5732
|
}
|
|
5234
5733
|
/**
|
|
5235
5734
|
* @name TimeTypeEnum.TimeType
|
|
5236
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
5735
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/TimeTypeEnum.TimeType
|
|
5237
5736
|
*/
|
|
5238
5737
|
enum TimeType {
|
|
5239
5738
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -5243,7 +5742,7 @@ export declare namespace enums {
|
|
|
5243
5742
|
}
|
|
5244
5743
|
/**
|
|
5245
5744
|
* @name UnitOfMeasureEnum.UnitOfMeasure
|
|
5246
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
5745
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/UnitOfMeasureEnum.UnitOfMeasure
|
|
5247
5746
|
*/
|
|
5248
5747
|
enum UnitOfMeasure {
|
|
5249
5748
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -5263,7 +5762,7 @@ export declare namespace enums {
|
|
|
5263
5762
|
}
|
|
5264
5763
|
/**
|
|
5265
5764
|
* @name UserInterestTaxonomyTypeEnum.UserInterestTaxonomyType
|
|
5266
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
5765
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/UserInterestTaxonomyTypeEnum.UserInterestTaxonomyType
|
|
5267
5766
|
*/
|
|
5268
5767
|
enum UserInterestTaxonomyType {
|
|
5269
5768
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -5276,7 +5775,7 @@ export declare namespace enums {
|
|
|
5276
5775
|
}
|
|
5277
5776
|
/**
|
|
5278
5777
|
* @name UserListAccessStatusEnum.UserListAccessStatus
|
|
5279
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
5778
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/UserListAccessStatusEnum.UserListAccessStatus
|
|
5280
5779
|
*/
|
|
5281
5780
|
enum UserListAccessStatus {
|
|
5282
5781
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -5286,7 +5785,7 @@ export declare namespace enums {
|
|
|
5286
5785
|
}
|
|
5287
5786
|
/**
|
|
5288
5787
|
* @name UserListClosingReasonEnum.UserListClosingReason
|
|
5289
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
5788
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/UserListClosingReasonEnum.UserListClosingReason
|
|
5290
5789
|
*/
|
|
5291
5790
|
enum UserListClosingReason {
|
|
5292
5791
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -5295,7 +5794,7 @@ export declare namespace enums {
|
|
|
5295
5794
|
}
|
|
5296
5795
|
/**
|
|
5297
5796
|
* @name UserListCustomerTypeCategoryEnum.UserListCustomerTypeCategory
|
|
5298
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
5797
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/UserListCustomerTypeCategoryEnum.UserListCustomerTypeCategory
|
|
5299
5798
|
*/
|
|
5300
5799
|
enum UserListCustomerTypeCategory {
|
|
5301
5800
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -5318,7 +5817,7 @@ export declare namespace enums {
|
|
|
5318
5817
|
}
|
|
5319
5818
|
/**
|
|
5320
5819
|
* @name UserListMembershipStatusEnum.UserListMembershipStatus
|
|
5321
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
5820
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/UserListMembershipStatusEnum.UserListMembershipStatus
|
|
5322
5821
|
*/
|
|
5323
5822
|
enum UserListMembershipStatus {
|
|
5324
5823
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -5328,7 +5827,7 @@ export declare namespace enums {
|
|
|
5328
5827
|
}
|
|
5329
5828
|
/**
|
|
5330
5829
|
* @name UserListSizeRangeEnum.UserListSizeRange
|
|
5331
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
5830
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/UserListSizeRangeEnum.UserListSizeRange
|
|
5332
5831
|
*/
|
|
5333
5832
|
enum UserListSizeRange {
|
|
5334
5833
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -5352,7 +5851,7 @@ export declare namespace enums {
|
|
|
5352
5851
|
}
|
|
5353
5852
|
/**
|
|
5354
5853
|
* @name ValueRuleDeviceTypeEnum.ValueRuleDeviceType
|
|
5355
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
5854
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/ValueRuleDeviceTypeEnum.ValueRuleDeviceType
|
|
5356
5855
|
*/
|
|
5357
5856
|
enum ValueRuleDeviceType {
|
|
5358
5857
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -5363,7 +5862,7 @@ export declare namespace enums {
|
|
|
5363
5862
|
}
|
|
5364
5863
|
/**
|
|
5365
5864
|
* @name ValueRuleGeoLocationMatchTypeEnum.ValueRuleGeoLocationMatchType
|
|
5366
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
5865
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/ValueRuleGeoLocationMatchTypeEnum.ValueRuleGeoLocationMatchType
|
|
5367
5866
|
*/
|
|
5368
5867
|
enum ValueRuleGeoLocationMatchType {
|
|
5369
5868
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -5373,7 +5872,7 @@ export declare namespace enums {
|
|
|
5373
5872
|
}
|
|
5374
5873
|
/**
|
|
5375
5874
|
* @name ValueRuleOperationEnum.ValueRuleOperation
|
|
5376
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
5875
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/ValueRuleOperationEnum.ValueRuleOperation
|
|
5377
5876
|
*/
|
|
5378
5877
|
enum ValueRuleOperation {
|
|
5379
5878
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -5384,7 +5883,7 @@ export declare namespace enums {
|
|
|
5384
5883
|
}
|
|
5385
5884
|
/**
|
|
5386
5885
|
* @name ValueRuleSetAttachmentTypeEnum.ValueRuleSetAttachmentType
|
|
5387
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
5886
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/ValueRuleSetAttachmentTypeEnum.ValueRuleSetAttachmentType
|
|
5388
5887
|
*/
|
|
5389
5888
|
enum ValueRuleSetAttachmentType {
|
|
5390
5889
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -5394,7 +5893,7 @@ export declare namespace enums {
|
|
|
5394
5893
|
}
|
|
5395
5894
|
/**
|
|
5396
5895
|
* @name ValueRuleSetDimensionEnum.ValueRuleSetDimension
|
|
5397
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
5896
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/ValueRuleSetDimensionEnum.ValueRuleSetDimension
|
|
5398
5897
|
*/
|
|
5399
5898
|
enum ValueRuleSetDimension {
|
|
5400
5899
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -5407,7 +5906,7 @@ export declare namespace enums {
|
|
|
5407
5906
|
}
|
|
5408
5907
|
/**
|
|
5409
5908
|
* @name VanityPharmaDisplayUrlModeEnum.VanityPharmaDisplayUrlMode
|
|
5410
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
5909
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/VanityPharmaDisplayUrlModeEnum.VanityPharmaDisplayUrlMode
|
|
5411
5910
|
*/
|
|
5412
5911
|
enum VanityPharmaDisplayUrlMode {
|
|
5413
5912
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -5417,7 +5916,7 @@ export declare namespace enums {
|
|
|
5417
5916
|
}
|
|
5418
5917
|
/**
|
|
5419
5918
|
* @name VanityPharmaTextEnum.VanityPharmaText
|
|
5420
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
5919
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/VanityPharmaTextEnum.VanityPharmaText
|
|
5421
5920
|
*/
|
|
5422
5921
|
enum VanityPharmaText {
|
|
5423
5922
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -5437,7 +5936,7 @@ export declare namespace enums {
|
|
|
5437
5936
|
}
|
|
5438
5937
|
/**
|
|
5439
5938
|
* @name VideoAdFormatRestrictionEnum.VideoAdFormatRestriction
|
|
5440
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
5939
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/VideoAdFormatRestrictionEnum.VideoAdFormatRestriction
|
|
5441
5940
|
*/
|
|
5442
5941
|
enum VideoAdFormatRestriction {
|
|
5443
5942
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -5446,7 +5945,7 @@ export declare namespace enums {
|
|
|
5446
5945
|
}
|
|
5447
5946
|
/**
|
|
5448
5947
|
* @name VideoAdSequenceInteractionTypeEnum.VideoAdSequenceInteractionType
|
|
5449
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
5948
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/VideoAdSequenceInteractionTypeEnum.VideoAdSequenceInteractionType
|
|
5450
5949
|
*/
|
|
5451
5950
|
enum VideoAdSequenceInteractionType {
|
|
5452
5951
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -5458,7 +5957,7 @@ export declare namespace enums {
|
|
|
5458
5957
|
}
|
|
5459
5958
|
/**
|
|
5460
5959
|
* @name VideoAdSequenceMinimumDurationEnum.VideoAdSequenceMinimumDuration
|
|
5461
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
5960
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/VideoAdSequenceMinimumDurationEnum.VideoAdSequenceMinimumDuration
|
|
5462
5961
|
*/
|
|
5463
5962
|
enum VideoAdSequenceMinimumDuration {
|
|
5464
5963
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -5468,7 +5967,7 @@ export declare namespace enums {
|
|
|
5468
5967
|
}
|
|
5469
5968
|
/**
|
|
5470
5969
|
* @name VideoEnhancementSourceEnum.VideoEnhancementSource
|
|
5471
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
5970
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/VideoEnhancementSourceEnum.VideoEnhancementSource
|
|
5472
5971
|
*/
|
|
5473
5972
|
enum VideoEnhancementSource {
|
|
5474
5973
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -5478,7 +5977,7 @@ export declare namespace enums {
|
|
|
5478
5977
|
}
|
|
5479
5978
|
/**
|
|
5480
5979
|
* @name YouTubeVideoPrivacyEnum.YouTubeVideoPrivacy
|
|
5481
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
5980
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/YouTubeVideoPrivacyEnum.YouTubeVideoPrivacy
|
|
5482
5981
|
*/
|
|
5483
5982
|
enum YouTubeVideoPrivacy {
|
|
5484
5983
|
UNSPECIFIED = 0,// UNSPECIFIED
|
|
@@ -5488,7 +5987,7 @@ export declare namespace enums {
|
|
|
5488
5987
|
}
|
|
5489
5988
|
/**
|
|
5490
5989
|
* @name YouTubeVideoUploadStateEnum.YouTubeVideoUploadState
|
|
5491
|
-
* @link https://developers.google.com/google-ads/api/reference/rpc/
|
|
5990
|
+
* @link https://developers.google.com/google-ads/api/reference/rpc/v25/YouTubeVideoUploadStateEnum.YouTubeVideoUploadState
|
|
5492
5991
|
*/
|
|
5493
5992
|
enum YouTubeVideoUploadState {
|
|
5494
5993
|
UNSPECIFIED = 0,// UNSPECIFIED
|