google-ads-googleads 9.0.0 → 10.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9d7abeb1fc4db6d9d746bbf460ecc3bcc168f5c946dc6abd4ae8f3464ce3cc75
4
- data.tar.gz: 83b3c7f24872bf2fa49e38e7be13165c642f35739d876abf3a4ae0e3b74ca15d
3
+ metadata.gz: 9ff06672d9c902c66ed645ba17f05c31410c1a9dd0f94ea510bade07935b2352
4
+ data.tar.gz: 7001f4e590899c82fe1a24d4234ce94187b0106ddb8ccb43b330012dc1d54f1f
5
5
  SHA512:
6
- metadata.gz: d70fd116e2274ccb5b06202ec99ab76b5ab61ba563c90e62153c4159fbb6da4d8dba10c4df1c7cc0f8db909dcf5ed7a37914f0de8122dd8215664f3f3b9d5e90
7
- data.tar.gz: bd213ecbb2664994a6e0eca06e966e241af5af07b93d96e18c924c1a31ab519c68bda3ac4bf41c3a71c3c83d3fd9b2a31efeb6618a56d5fb380dbf423f422953
6
+ metadata.gz: 207979ffae91ac39007e55961cd9da8877269651325c93b1c9fb2a9eed416a08e2e074c7daf77e1bf6e19594f8700c102aad41118e185df6f106c72e4509595c
7
+ data.tar.gz: d174159ea3c6e232a9723ca12249080e6d2ad3da103572777b558bb1b2395252bef6adc7153c91bec0cd56ee0460f07399712cc9b7511f9622fa1edef189dd9d
data/ChangeLog CHANGED
@@ -1,6 +1,11 @@
1
+ 10.0.0:
2
+ - Removing support for old-style positional arguments. If you were still
3
+ using these, see this article for migration instructions:
4
+ https://developers.google.com/google-ads/api/docs/client-libs/ruby/migration
5
+
1
6
  9.0.0:
2
- - Compatibility with v6.1 of the API: https://developers.google.com/google-ads/api/docs/release-notes
3
- - Removed support for v3.
7
+ - Compatibility with v6.1 of the API: https://developers.google.com/google-ads/api/docs/release-notes
8
+ - Removed support for v3.
4
9
 
5
10
  8.1.0:
6
11
  - Added support for loading configuration from environment variables in
@@ -4,36 +4,36 @@ module Google
4
4
  module Factories
5
5
  module V4
6
6
  module Enums
7
- # Returns the descriptor for the ChangeStatusOperation enum
7
+ # Returns the descriptor for the MatchingFunctionContextType enum
8
8
  #
9
- # @return [Google::Protobuf::EnumDescriptor] for the ChangeStatusOperation enum
10
- def self.change_status_operation
11
- require "google/ads/google_ads/v4/enums/change_status_operation_pb"
12
- Google::Ads::GoogleAds::V4::Enums::ChangeStatusOperationEnum::ChangeStatusOperation.descriptor
9
+ # @return [Google::Protobuf::EnumDescriptor] for the MatchingFunctionContextType enum
10
+ def self.matching_function_context_type
11
+ require "google/ads/google_ads/v4/enums/matching_function_context_type_pb"
12
+ Google::Ads::GoogleAds::V4::Enums::MatchingFunctionContextTypeEnum::MatchingFunctionContextType.descriptor
13
13
  end
14
14
 
15
- # Returns the descriptor for the ChangeStatusResourceType enum
15
+ # Returns the descriptor for the MatchingFunctionOperator enum
16
16
  #
17
- # @return [Google::Protobuf::EnumDescriptor] for the ChangeStatusResourceType enum
18
- def self.change_status_resource_type
19
- require "google/ads/google_ads/v4/enums/change_status_resource_type_pb"
20
- Google::Ads::GoogleAds::V4::Enums::ChangeStatusResourceTypeEnum::ChangeStatusResourceType.descriptor
17
+ # @return [Google::Protobuf::EnumDescriptor] for the MatchingFunctionOperator enum
18
+ def self.matching_function_operator
19
+ require "google/ads/google_ads/v4/enums/matching_function_operator_pb"
20
+ Google::Ads::GoogleAds::V4::Enums::MatchingFunctionOperatorEnum::MatchingFunctionOperator.descriptor
21
21
  end
22
22
 
23
- # Returns the descriptor for the SearchTermTargetingStatus enum
23
+ # Returns the descriptor for the FeedLinkStatus enum
24
24
  #
25
- # @return [Google::Protobuf::EnumDescriptor] for the SearchTermTargetingStatus enum
26
- def self.search_term_targeting_status
27
- require "google/ads/google_ads/v4/enums/search_term_targeting_status_pb"
28
- Google::Ads::GoogleAds::V4::Enums::SearchTermTargetingStatusEnum::SearchTermTargetingStatus.descriptor
25
+ # @return [Google::Protobuf::EnumDescriptor] for the FeedLinkStatus enum
26
+ def self.feed_link_status
27
+ require "google/ads/google_ads/v4/enums/feed_link_status_pb"
28
+ Google::Ads::GoogleAds::V4::Enums::FeedLinkStatusEnum::FeedLinkStatus.descriptor
29
29
  end
30
30
 
31
- # Returns the descriptor for the KeywordPlanNetwork enum
31
+ # Returns the descriptor for the PlaceholderType enum
32
32
  #
33
- # @return [Google::Protobuf::EnumDescriptor] for the KeywordPlanNetwork enum
34
- def self.keyword_plan_network
35
- require "google/ads/google_ads/v4/enums/keyword_plan_network_pb"
36
- Google::Ads::GoogleAds::V4::Enums::KeywordPlanNetworkEnum::KeywordPlanNetwork.descriptor
33
+ # @return [Google::Protobuf::EnumDescriptor] for the PlaceholderType enum
34
+ def self.placeholder_type
35
+ require "google/ads/google_ads/v4/enums/placeholder_type_pb"
36
+ Google::Ads::GoogleAds::V4::Enums::PlaceholderTypeEnum::PlaceholderType.descriptor
37
37
  end
38
38
 
39
39
  # Returns the descriptor for the AccountBudgetProposalStatus enum
@@ -68,6 +68,38 @@ module Google
68
68
  Google::Ads::GoogleAds::V4::Enums::TimeTypeEnum::TimeType.descriptor
69
69
  end
70
70
 
71
+ # Returns the descriptor for the ExtensionSettingDevice enum
72
+ #
73
+ # @return [Google::Protobuf::EnumDescriptor] for the ExtensionSettingDevice enum
74
+ def self.extension_setting_device
75
+ require "google/ads/google_ads/v4/enums/extension_setting_device_pb"
76
+ Google::Ads::GoogleAds::V4::Enums::ExtensionSettingDeviceEnum::ExtensionSettingDevice.descriptor
77
+ end
78
+
79
+ # Returns the descriptor for the ExtensionType enum
80
+ #
81
+ # @return [Google::Protobuf::EnumDescriptor] for the ExtensionType enum
82
+ def self.extension_type
83
+ require "google/ads/google_ads/v4/enums/extension_type_pb"
84
+ Google::Ads::GoogleAds::V4::Enums::ExtensionTypeEnum::ExtensionType.descriptor
85
+ end
86
+
87
+ # Returns the descriptor for the ManagerLinkStatus enum
88
+ #
89
+ # @return [Google::Protobuf::EnumDescriptor] for the ManagerLinkStatus enum
90
+ def self.manager_link_status
91
+ require "google/ads/google_ads/v4/enums/manager_link_status_pb"
92
+ Google::Ads::GoogleAds::V4::Enums::ManagerLinkStatusEnum::ManagerLinkStatus.descriptor
93
+ end
94
+
95
+ # Returns the descriptor for the KeywordMatchType enum
96
+ #
97
+ # @return [Google::Protobuf::EnumDescriptor] for the KeywordMatchType enum
98
+ def self.keyword_match_type
99
+ require "google/ads/google_ads/v4/enums/keyword_match_type_pb"
100
+ Google::Ads::GoogleAds::V4::Enums::KeywordMatchTypeEnum::KeywordMatchType.descriptor
101
+ end
102
+
71
103
  # Returns the descriptor for the AgeRangeType enum
72
104
  #
73
105
  # @return [Google::Protobuf::EnumDescriptor] for the AgeRangeType enum
@@ -140,14 +172,6 @@ module Google
140
172
  Google::Ads::GoogleAds::V4::Enums::InteractionTypeEnum::InteractionType.descriptor
141
173
  end
142
174
 
143
- # Returns the descriptor for the KeywordMatchType enum
144
- #
145
- # @return [Google::Protobuf::EnumDescriptor] for the KeywordMatchType enum
146
- def self.keyword_match_type
147
- require "google/ads/google_ads/v4/enums/keyword_match_type_pb"
148
- Google::Ads::GoogleAds::V4::Enums::KeywordMatchTypeEnum::KeywordMatchType.descriptor
149
- end
150
-
151
175
  # Returns the descriptor for the ListingGroupType enum
152
176
  #
153
177
  # @return [Google::Protobuf::EnumDescriptor] for the ListingGroupType enum
@@ -260,532 +284,532 @@ module Google
260
284
  Google::Ads::GoogleAds::V4::Enums::WebpageConditionOperatorEnum::WebpageConditionOperator.descriptor
261
285
  end
262
286
 
263
- # Returns the descriptor for the CriterionType enum
287
+ # Returns the descriptor for the FeedItemTargetDevice enum
264
288
  #
265
- # @return [Google::Protobuf::EnumDescriptor] for the CriterionType enum
266
- def self.criterion_type
267
- require "google/ads/google_ads/v4/enums/criterion_type_pb"
268
- Google::Ads::GoogleAds::V4::Enums::CriterionTypeEnum::CriterionType.descriptor
289
+ # @return [Google::Protobuf::EnumDescriptor] for the FeedItemTargetDevice enum
290
+ def self.feed_item_target_device
291
+ require "google/ads/google_ads/v4/enums/feed_item_target_device_pb"
292
+ Google::Ads::GoogleAds::V4::Enums::FeedItemTargetDeviceEnum::FeedItemTargetDevice.descriptor
269
293
  end
270
294
 
271
- # Returns the descriptor for the CustomerMatchUploadKeyType enum
295
+ # Returns the descriptor for the FeedItemTargetStatus enum
272
296
  #
273
- # @return [Google::Protobuf::EnumDescriptor] for the CustomerMatchUploadKeyType enum
274
- def self.customer_match_upload_key_type
275
- require "google/ads/google_ads/v4/enums/customer_match_upload_key_type_pb"
276
- Google::Ads::GoogleAds::V4::Enums::CustomerMatchUploadKeyTypeEnum::CustomerMatchUploadKeyType.descriptor
297
+ # @return [Google::Protobuf::EnumDescriptor] for the FeedItemTargetStatus enum
298
+ def self.feed_item_target_status
299
+ require "google/ads/google_ads/v4/enums/feed_item_target_status_pb"
300
+ Google::Ads::GoogleAds::V4::Enums::FeedItemTargetStatusEnum::FeedItemTargetStatus.descriptor
277
301
  end
278
302
 
279
- # Returns the descriptor for the UserListCombinedRuleOperator enum
303
+ # Returns the descriptor for the FeedItemTargetType enum
280
304
  #
281
- # @return [Google::Protobuf::EnumDescriptor] for the UserListCombinedRuleOperator enum
282
- def self.user_list_combined_rule_operator
283
- require "google/ads/google_ads/v4/enums/user_list_combined_rule_operator_pb"
284
- Google::Ads::GoogleAds::V4::Enums::UserListCombinedRuleOperatorEnum::UserListCombinedRuleOperator.descriptor
305
+ # @return [Google::Protobuf::EnumDescriptor] for the FeedItemTargetType enum
306
+ def self.feed_item_target_type
307
+ require "google/ads/google_ads/v4/enums/feed_item_target_type_pb"
308
+ Google::Ads::GoogleAds::V4::Enums::FeedItemTargetTypeEnum::FeedItemTargetType.descriptor
285
309
  end
286
310
 
287
- # Returns the descriptor for the UserListCrmDataSourceType enum
311
+ # Returns the descriptor for the PolicyTopicEntryType enum
288
312
  #
289
- # @return [Google::Protobuf::EnumDescriptor] for the UserListCrmDataSourceType enum
290
- def self.user_list_crm_data_source_type
291
- require "google/ads/google_ads/v4/enums/user_list_crm_data_source_type_pb"
292
- Google::Ads::GoogleAds::V4::Enums::UserListCrmDataSourceTypeEnum::UserListCrmDataSourceType.descriptor
313
+ # @return [Google::Protobuf::EnumDescriptor] for the PolicyTopicEntryType enum
314
+ def self.policy_topic_entry_type
315
+ require "google/ads/google_ads/v4/enums/policy_topic_entry_type_pb"
316
+ Google::Ads::GoogleAds::V4::Enums::PolicyTopicEntryTypeEnum::PolicyTopicEntryType.descriptor
293
317
  end
294
318
 
295
- # Returns the descriptor for the UserListDateRuleItemOperator enum
319
+ # Returns the descriptor for the PolicyTopicEvidenceDestinationMismatchUrlType enum
296
320
  #
297
- # @return [Google::Protobuf::EnumDescriptor] for the UserListDateRuleItemOperator enum
298
- def self.user_list_date_rule_item_operator
299
- require "google/ads/google_ads/v4/enums/user_list_date_rule_item_operator_pb"
300
- Google::Ads::GoogleAds::V4::Enums::UserListDateRuleItemOperatorEnum::UserListDateRuleItemOperator.descriptor
321
+ # @return [Google::Protobuf::EnumDescriptor] for the PolicyTopicEvidenceDestinationMismatchUrlType enum
322
+ def self.policy_topic_evidence_destination_mismatch_url_type
323
+ require "google/ads/google_ads/v4/enums/policy_topic_evidence_destination_mismatch_url_type_pb"
324
+ Google::Ads::GoogleAds::V4::Enums::PolicyTopicEvidenceDestinationMismatchUrlTypeEnum::PolicyTopicEvidenceDestinationMismatchUrlType.descriptor
301
325
  end
302
326
 
303
- # Returns the descriptor for the UserListLogicalRuleOperator enum
327
+ # Returns the descriptor for the PolicyTopicEvidenceDestinationNotWorkingDevice enum
304
328
  #
305
- # @return [Google::Protobuf::EnumDescriptor] for the UserListLogicalRuleOperator enum
306
- def self.user_list_logical_rule_operator
307
- require "google/ads/google_ads/v4/enums/user_list_logical_rule_operator_pb"
308
- Google::Ads::GoogleAds::V4::Enums::UserListLogicalRuleOperatorEnum::UserListLogicalRuleOperator.descriptor
329
+ # @return [Google::Protobuf::EnumDescriptor] for the PolicyTopicEvidenceDestinationNotWorkingDevice enum
330
+ def self.policy_topic_evidence_destination_not_working_device
331
+ require "google/ads/google_ads/v4/enums/policy_topic_evidence_destination_not_working_device_pb"
332
+ Google::Ads::GoogleAds::V4::Enums::PolicyTopicEvidenceDestinationNotWorkingDeviceEnum::PolicyTopicEvidenceDestinationNotWorkingDevice.descriptor
309
333
  end
310
334
 
311
- # Returns the descriptor for the UserListNumberRuleItemOperator enum
335
+ # Returns the descriptor for the PolicyTopicEvidenceDestinationNotWorkingDnsErrorType enum
312
336
  #
313
- # @return [Google::Protobuf::EnumDescriptor] for the UserListNumberRuleItemOperator enum
314
- def self.user_list_number_rule_item_operator
315
- require "google/ads/google_ads/v4/enums/user_list_number_rule_item_operator_pb"
316
- Google::Ads::GoogleAds::V4::Enums::UserListNumberRuleItemOperatorEnum::UserListNumberRuleItemOperator.descriptor
337
+ # @return [Google::Protobuf::EnumDescriptor] for the PolicyTopicEvidenceDestinationNotWorkingDnsErrorType enum
338
+ def self.policy_topic_evidence_destination_not_working_dns_error_type
339
+ require "google/ads/google_ads/v4/enums/policy_topic_evidence_destination_not_working_dns_error_type_pb"
340
+ Google::Ads::GoogleAds::V4::Enums::PolicyTopicEvidenceDestinationNotWorkingDnsErrorTypeEnum::PolicyTopicEvidenceDestinationNotWorkingDnsErrorType.descriptor
317
341
  end
318
342
 
319
- # Returns the descriptor for the UserListPrepopulationStatus enum
343
+ # Returns the descriptor for the FeedItemQualityApprovalStatus enum
320
344
  #
321
- # @return [Google::Protobuf::EnumDescriptor] for the UserListPrepopulationStatus enum
322
- def self.user_list_prepopulation_status
323
- require "google/ads/google_ads/v4/enums/user_list_prepopulation_status_pb"
324
- Google::Ads::GoogleAds::V4::Enums::UserListPrepopulationStatusEnum::UserListPrepopulationStatus.descriptor
345
+ # @return [Google::Protobuf::EnumDescriptor] for the FeedItemQualityApprovalStatus enum
346
+ def self.feed_item_quality_approval_status
347
+ require "google/ads/google_ads/v4/enums/feed_item_quality_approval_status_pb"
348
+ Google::Ads::GoogleAds::V4::Enums::FeedItemQualityApprovalStatusEnum::FeedItemQualityApprovalStatus.descriptor
325
349
  end
326
350
 
327
- # Returns the descriptor for the UserListRuleType enum
351
+ # Returns the descriptor for the FeedItemQualityDisapprovalReason enum
328
352
  #
329
- # @return [Google::Protobuf::EnumDescriptor] for the UserListRuleType enum
330
- def self.user_list_rule_type
331
- require "google/ads/google_ads/v4/enums/user_list_rule_type_pb"
332
- Google::Ads::GoogleAds::V4::Enums::UserListRuleTypeEnum::UserListRuleType.descriptor
353
+ # @return [Google::Protobuf::EnumDescriptor] for the FeedItemQualityDisapprovalReason enum
354
+ def self.feed_item_quality_disapproval_reason
355
+ require "google/ads/google_ads/v4/enums/feed_item_quality_disapproval_reason_pb"
356
+ Google::Ads::GoogleAds::V4::Enums::FeedItemQualityDisapprovalReasonEnum::FeedItemQualityDisapprovalReason.descriptor
333
357
  end
334
358
 
335
- # Returns the descriptor for the UserListStringRuleItemOperator enum
359
+ # Returns the descriptor for the FeedItemStatus enum
336
360
  #
337
- # @return [Google::Protobuf::EnumDescriptor] for the UserListStringRuleItemOperator enum
338
- def self.user_list_string_rule_item_operator
339
- require "google/ads/google_ads/v4/enums/user_list_string_rule_item_operator_pb"
340
- Google::Ads::GoogleAds::V4::Enums::UserListStringRuleItemOperatorEnum::UserListStringRuleItemOperator.descriptor
361
+ # @return [Google::Protobuf::EnumDescriptor] for the FeedItemStatus enum
362
+ def self.feed_item_status
363
+ require "google/ads/google_ads/v4/enums/feed_item_status_pb"
364
+ Google::Ads::GoogleAds::V4::Enums::FeedItemStatusEnum::FeedItemStatus.descriptor
341
365
  end
342
366
 
343
- # Returns the descriptor for the AccessReason enum
367
+ # Returns the descriptor for the FeedItemValidationStatus enum
344
368
  #
345
- # @return [Google::Protobuf::EnumDescriptor] for the AccessReason enum
346
- def self.access_reason
347
- require "google/ads/google_ads/v4/enums/access_reason_pb"
348
- Google::Ads::GoogleAds::V4::Enums::AccessReasonEnum::AccessReason.descriptor
369
+ # @return [Google::Protobuf::EnumDescriptor] for the FeedItemValidationStatus enum
370
+ def self.feed_item_validation_status
371
+ require "google/ads/google_ads/v4/enums/feed_item_validation_status_pb"
372
+ Google::Ads::GoogleAds::V4::Enums::FeedItemValidationStatusEnum::FeedItemValidationStatus.descriptor
349
373
  end
350
374
 
351
- # Returns the descriptor for the UserListAccessStatus enum
375
+ # Returns the descriptor for the GeoTargetingRestriction enum
352
376
  #
353
- # @return [Google::Protobuf::EnumDescriptor] for the UserListAccessStatus enum
354
- def self.user_list_access_status
355
- require "google/ads/google_ads/v4/enums/user_list_access_status_pb"
356
- Google::Ads::GoogleAds::V4::Enums::UserListAccessStatusEnum::UserListAccessStatus.descriptor
377
+ # @return [Google::Protobuf::EnumDescriptor] for the GeoTargetingRestriction enum
378
+ def self.geo_targeting_restriction
379
+ require "google/ads/google_ads/v4/enums/geo_targeting_restriction_pb"
380
+ Google::Ads::GoogleAds::V4::Enums::GeoTargetingRestrictionEnum::GeoTargetingRestriction.descriptor
357
381
  end
358
382
 
359
- # Returns the descriptor for the UserListClosingReason enum
383
+ # Returns the descriptor for the PolicyApprovalStatus enum
360
384
  #
361
- # @return [Google::Protobuf::EnumDescriptor] for the UserListClosingReason enum
362
- def self.user_list_closing_reason
363
- require "google/ads/google_ads/v4/enums/user_list_closing_reason_pb"
364
- Google::Ads::GoogleAds::V4::Enums::UserListClosingReasonEnum::UserListClosingReason.descriptor
385
+ # @return [Google::Protobuf::EnumDescriptor] for the PolicyApprovalStatus enum
386
+ def self.policy_approval_status
387
+ require "google/ads/google_ads/v4/enums/policy_approval_status_pb"
388
+ Google::Ads::GoogleAds::V4::Enums::PolicyApprovalStatusEnum::PolicyApprovalStatus.descriptor
365
389
  end
366
390
 
367
- # Returns the descriptor for the UserListMembershipStatus enum
391
+ # Returns the descriptor for the PolicyReviewStatus enum
368
392
  #
369
- # @return [Google::Protobuf::EnumDescriptor] for the UserListMembershipStatus enum
370
- def self.user_list_membership_status
371
- require "google/ads/google_ads/v4/enums/user_list_membership_status_pb"
372
- Google::Ads::GoogleAds::V4::Enums::UserListMembershipStatusEnum::UserListMembershipStatus.descriptor
393
+ # @return [Google::Protobuf::EnumDescriptor] for the PolicyReviewStatus enum
394
+ def self.policy_review_status
395
+ require "google/ads/google_ads/v4/enums/policy_review_status_pb"
396
+ Google::Ads::GoogleAds::V4::Enums::PolicyReviewStatusEnum::PolicyReviewStatus.descriptor
373
397
  end
374
398
 
375
- # Returns the descriptor for the UserListSizeRange enum
399
+ # Returns the descriptor for the FeedItemValidationError enum
376
400
  #
377
- # @return [Google::Protobuf::EnumDescriptor] for the UserListSizeRange enum
378
- def self.user_list_size_range
379
- require "google/ads/google_ads/v4/enums/user_list_size_range_pb"
380
- Google::Ads::GoogleAds::V4::Enums::UserListSizeRangeEnum::UserListSizeRange.descriptor
401
+ # @return [Google::Protobuf::EnumDescriptor] for the FeedItemValidationError enum
402
+ def self.feed_item_validation_error
403
+ require "google/ads/google_ads/v4/errors/feed_item_validation_error_pb"
404
+ Google::Ads::GoogleAds::V4::Errors::FeedItemValidationErrorEnum::FeedItemValidationError.descriptor
381
405
  end
382
406
 
383
- # Returns the descriptor for the UserListType enum
407
+ # Returns the descriptor for the MerchantCenterLinkStatus enum
384
408
  #
385
- # @return [Google::Protobuf::EnumDescriptor] for the UserListType enum
386
- def self.user_list_type
387
- require "google/ads/google_ads/v4/enums/user_list_type_pb"
388
- Google::Ads::GoogleAds::V4::Enums::UserListTypeEnum::UserListType.descriptor
409
+ # @return [Google::Protobuf::EnumDescriptor] for the MerchantCenterLinkStatus enum
410
+ def self.merchant_center_link_status
411
+ require "google/ads/google_ads/v4/enums/merchant_center_link_status_pb"
412
+ Google::Ads::GoogleAds::V4::Enums::MerchantCenterLinkStatusEnum::MerchantCenterLinkStatus.descriptor
389
413
  end
390
414
 
391
- # Returns the descriptor for the MatchingFunctionContextType enum
415
+ # Returns the descriptor for the BidModifierSource enum
392
416
  #
393
- # @return [Google::Protobuf::EnumDescriptor] for the MatchingFunctionContextType enum
394
- def self.matching_function_context_type
395
- require "google/ads/google_ads/v4/enums/matching_function_context_type_pb"
396
- Google::Ads::GoogleAds::V4::Enums::MatchingFunctionContextTypeEnum::MatchingFunctionContextType.descriptor
417
+ # @return [Google::Protobuf::EnumDescriptor] for the BidModifierSource enum
418
+ def self.bid_modifier_source
419
+ require "google/ads/google_ads/v4/enums/bid_modifier_source_pb"
420
+ Google::Ads::GoogleAds::V4::Enums::BidModifierSourceEnum::BidModifierSource.descriptor
397
421
  end
398
422
 
399
- # Returns the descriptor for the MatchingFunctionOperator enum
423
+ # Returns the descriptor for the BatchJobStatus enum
400
424
  #
401
- # @return [Google::Protobuf::EnumDescriptor] for the MatchingFunctionOperator enum
402
- def self.matching_function_operator
403
- require "google/ads/google_ads/v4/enums/matching_function_operator_pb"
404
- Google::Ads::GoogleAds::V4::Enums::MatchingFunctionOperatorEnum::MatchingFunctionOperator.descriptor
425
+ # @return [Google::Protobuf::EnumDescriptor] for the BatchJobStatus enum
426
+ def self.batch_job_status
427
+ require "google/ads/google_ads/v4/enums/batch_job_status_pb"
428
+ Google::Ads::GoogleAds::V4::Enums::BatchJobStatusEnum::BatchJobStatus.descriptor
405
429
  end
406
430
 
407
- # Returns the descriptor for the FeedLinkStatus enum
431
+ # Returns the descriptor for the MimeType enum
408
432
  #
409
- # @return [Google::Protobuf::EnumDescriptor] for the FeedLinkStatus enum
410
- def self.feed_link_status
411
- require "google/ads/google_ads/v4/enums/feed_link_status_pb"
412
- Google::Ads::GoogleAds::V4::Enums::FeedLinkStatusEnum::FeedLinkStatus.descriptor
433
+ # @return [Google::Protobuf::EnumDescriptor] for the MimeType enum
434
+ def self.mime_type
435
+ require "google/ads/google_ads/v4/enums/mime_type_pb"
436
+ Google::Ads::GoogleAds::V4::Enums::MimeTypeEnum::MimeType.descriptor
413
437
  end
414
438
 
415
- # Returns the descriptor for the PlaceholderType enum
439
+ # Returns the descriptor for the AssetType enum
416
440
  #
417
- # @return [Google::Protobuf::EnumDescriptor] for the PlaceholderType enum
418
- def self.placeholder_type
419
- require "google/ads/google_ads/v4/enums/placeholder_type_pb"
420
- Google::Ads::GoogleAds::V4::Enums::PlaceholderTypeEnum::PlaceholderType.descriptor
441
+ # @return [Google::Protobuf::EnumDescriptor] for the AssetType enum
442
+ def self.asset_type
443
+ require "google/ads/google_ads/v4/enums/asset_type_pb"
444
+ Google::Ads::GoogleAds::V4::Enums::AssetTypeEnum::AssetType.descriptor
421
445
  end
422
446
 
423
- # Returns the descriptor for the ExtensionSettingDevice enum
447
+ # Returns the descriptor for the CriterionType enum
424
448
  #
425
- # @return [Google::Protobuf::EnumDescriptor] for the ExtensionSettingDevice enum
426
- def self.extension_setting_device
427
- require "google/ads/google_ads/v4/enums/extension_setting_device_pb"
428
- Google::Ads::GoogleAds::V4::Enums::ExtensionSettingDeviceEnum::ExtensionSettingDevice.descriptor
449
+ # @return [Google::Protobuf::EnumDescriptor] for the CriterionType enum
450
+ def self.criterion_type
451
+ require "google/ads/google_ads/v4/enums/criterion_type_pb"
452
+ Google::Ads::GoogleAds::V4::Enums::CriterionTypeEnum::CriterionType.descriptor
429
453
  end
430
454
 
431
- # Returns the descriptor for the ExtensionType enum
455
+ # Returns the descriptor for the AffiliateLocationFeedRelationshipType enum
432
456
  #
433
- # @return [Google::Protobuf::EnumDescriptor] for the ExtensionType enum
434
- def self.extension_type
435
- require "google/ads/google_ads/v4/enums/extension_type_pb"
436
- Google::Ads::GoogleAds::V4::Enums::ExtensionTypeEnum::ExtensionType.descriptor
457
+ # @return [Google::Protobuf::EnumDescriptor] for the AffiliateLocationFeedRelationshipType enum
458
+ def self.affiliate_location_feed_relationship_type
459
+ require "google/ads/google_ads/v4/enums/affiliate_location_feed_relationship_type_pb"
460
+ Google::Ads::GoogleAds::V4::Enums::AffiliateLocationFeedRelationshipTypeEnum::AffiliateLocationFeedRelationshipType.descriptor
437
461
  end
438
462
 
439
- # Returns the descriptor for the AdCustomizerPlaceholderField enum
463
+ # Returns the descriptor for the FeedAttributeType enum
440
464
  #
441
- # @return [Google::Protobuf::EnumDescriptor] for the AdCustomizerPlaceholderField enum
442
- def self.ad_customizer_placeholder_field
443
- require "google/ads/google_ads/v4/enums/ad_customizer_placeholder_field_pb"
444
- Google::Ads::GoogleAds::V4::Enums::AdCustomizerPlaceholderFieldEnum::AdCustomizerPlaceholderField.descriptor
465
+ # @return [Google::Protobuf::EnumDescriptor] for the FeedAttributeType enum
466
+ def self.feed_attribute_type
467
+ require "google/ads/google_ads/v4/enums/feed_attribute_type_pb"
468
+ Google::Ads::GoogleAds::V4::Enums::FeedAttributeTypeEnum::FeedAttributeType.descriptor
445
469
  end
446
470
 
447
- # Returns the descriptor for the AffiliateLocationPlaceholderField enum
471
+ # Returns the descriptor for the FeedOrigin enum
448
472
  #
449
- # @return [Google::Protobuf::EnumDescriptor] for the AffiliateLocationPlaceholderField enum
450
- def self.affiliate_location_placeholder_field
451
- require "google/ads/google_ads/v4/enums/affiliate_location_placeholder_field_pb"
452
- Google::Ads::GoogleAds::V4::Enums::AffiliateLocationPlaceholderFieldEnum::AffiliateLocationPlaceholderField.descriptor
473
+ # @return [Google::Protobuf::EnumDescriptor] for the FeedOrigin enum
474
+ def self.feed_origin
475
+ require "google/ads/google_ads/v4/enums/feed_origin_pb"
476
+ Google::Ads::GoogleAds::V4::Enums::FeedOriginEnum::FeedOrigin.descriptor
453
477
  end
454
478
 
455
- # Returns the descriptor for the AppPlaceholderField enum
479
+ # Returns the descriptor for the FeedStatus enum
456
480
  #
457
- # @return [Google::Protobuf::EnumDescriptor] for the AppPlaceholderField enum
458
- def self.app_placeholder_field
459
- require "google/ads/google_ads/v4/enums/app_placeholder_field_pb"
460
- Google::Ads::GoogleAds::V4::Enums::AppPlaceholderFieldEnum::AppPlaceholderField.descriptor
481
+ # @return [Google::Protobuf::EnumDescriptor] for the FeedStatus enum
482
+ def self.feed_status
483
+ require "google/ads/google_ads/v4/enums/feed_status_pb"
484
+ Google::Ads::GoogleAds::V4::Enums::FeedStatusEnum::FeedStatus.descriptor
461
485
  end
462
486
 
463
- # Returns the descriptor for the CallPlaceholderField enum
487
+ # Returns the descriptor for the Operator enum
464
488
  #
465
- # @return [Google::Protobuf::EnumDescriptor] for the CallPlaceholderField enum
466
- def self.call_placeholder_field
467
- require "google/ads/google_ads/v4/enums/call_placeholder_field_pb"
468
- Google::Ads::GoogleAds::V4::Enums::CallPlaceholderFieldEnum::CallPlaceholderField.descriptor
489
+ # @return [Google::Protobuf::EnumDescriptor] for the Operator enum
490
+ def self.operator
491
+ require "google/ads/google_ads/v4/resources/feed_pb"
492
+ Google::Ads::GoogleAds::V4::Resources::FeedAttributeOperation::Operator.descriptor
469
493
  end
470
494
 
471
- # Returns the descriptor for the CalloutPlaceholderField enum
495
+ # Returns the descriptor for the AccountBudgetStatus enum
472
496
  #
473
- # @return [Google::Protobuf::EnumDescriptor] for the CalloutPlaceholderField enum
474
- def self.callout_placeholder_field
475
- require "google/ads/google_ads/v4/enums/callout_placeholder_field_pb"
476
- Google::Ads::GoogleAds::V4::Enums::CalloutPlaceholderFieldEnum::CalloutPlaceholderField.descriptor
497
+ # @return [Google::Protobuf::EnumDescriptor] for the AccountBudgetStatus enum
498
+ def self.account_budget_status
499
+ require "google/ads/google_ads/v4/enums/account_budget_status_pb"
500
+ Google::Ads::GoogleAds::V4::Enums::AccountBudgetStatusEnum::AccountBudgetStatus.descriptor
477
501
  end
478
502
 
479
- # Returns the descriptor for the CustomPlaceholderField enum
503
+ # Returns the descriptor for the MobileDeviceType enum
480
504
  #
481
- # @return [Google::Protobuf::EnumDescriptor] for the CustomPlaceholderField enum
482
- def self.custom_placeholder_field
483
- require "google/ads/google_ads/v4/enums/custom_placeholder_field_pb"
484
- Google::Ads::GoogleAds::V4::Enums::CustomPlaceholderFieldEnum::CustomPlaceholderField.descriptor
505
+ # @return [Google::Protobuf::EnumDescriptor] for the MobileDeviceType enum
506
+ def self.mobile_device_type
507
+ require "google/ads/google_ads/v4/enums/mobile_device_type_pb"
508
+ Google::Ads::GoogleAds::V4::Enums::MobileDeviceTypeEnum::MobileDeviceType.descriptor
485
509
  end
486
510
 
487
- # Returns the descriptor for the DsaPageFeedCriterionField enum
511
+ # Returns the descriptor for the KeywordPlanForecastInterval enum
488
512
  #
489
- # @return [Google::Protobuf::EnumDescriptor] for the DsaPageFeedCriterionField enum
490
- def self.dsa_page_feed_criterion_field
491
- require "google/ads/google_ads/v4/enums/dsa_page_feed_criterion_field_pb"
492
- Google::Ads::GoogleAds::V4::Enums::DsaPageFeedCriterionFieldEnum::DsaPageFeedCriterionField.descriptor
513
+ # @return [Google::Protobuf::EnumDescriptor] for the KeywordPlanForecastInterval enum
514
+ def self.keyword_plan_forecast_interval
515
+ require "google/ads/google_ads/v4/enums/keyword_plan_forecast_interval_pb"
516
+ Google::Ads::GoogleAds::V4::Enums::KeywordPlanForecastIntervalEnum::KeywordPlanForecastInterval.descriptor
493
517
  end
494
518
 
495
- # Returns the descriptor for the EducationPlaceholderField enum
519
+ # Returns the descriptor for the AccountLinkStatus enum
496
520
  #
497
- # @return [Google::Protobuf::EnumDescriptor] for the EducationPlaceholderField enum
498
- def self.education_placeholder_field
499
- require "google/ads/google_ads/v4/enums/education_placeholder_field_pb"
500
- Google::Ads::GoogleAds::V4::Enums::EducationPlaceholderFieldEnum::EducationPlaceholderField.descriptor
521
+ # @return [Google::Protobuf::EnumDescriptor] for the AccountLinkStatus enum
522
+ def self.account_link_status
523
+ require "google/ads/google_ads/v4/enums/account_link_status_pb"
524
+ Google::Ads::GoogleAds::V4::Enums::AccountLinkStatusEnum::AccountLinkStatus.descriptor
501
525
  end
502
526
 
503
- # Returns the descriptor for the FeedMappingCriterionType enum
527
+ # Returns the descriptor for the LinkedAccountType enum
504
528
  #
505
- # @return [Google::Protobuf::EnumDescriptor] for the FeedMappingCriterionType enum
506
- def self.feed_mapping_criterion_type
507
- require "google/ads/google_ads/v4/enums/feed_mapping_criterion_type_pb"
508
- Google::Ads::GoogleAds::V4::Enums::FeedMappingCriterionTypeEnum::FeedMappingCriterionType.descriptor
529
+ # @return [Google::Protobuf::EnumDescriptor] for the LinkedAccountType enum
530
+ def self.linked_account_type
531
+ require "google/ads/google_ads/v4/enums/linked_account_type_pb"
532
+ Google::Ads::GoogleAds::V4::Enums::LinkedAccountTypeEnum::LinkedAccountType.descriptor
509
533
  end
510
534
 
511
- # Returns the descriptor for the FeedMappingStatus enum
535
+ # Returns the descriptor for the MobileAppVendor enum
512
536
  #
513
- # @return [Google::Protobuf::EnumDescriptor] for the FeedMappingStatus enum
514
- def self.feed_mapping_status
515
- require "google/ads/google_ads/v4/enums/feed_mapping_status_pb"
516
- Google::Ads::GoogleAds::V4::Enums::FeedMappingStatusEnum::FeedMappingStatus.descriptor
537
+ # @return [Google::Protobuf::EnumDescriptor] for the MobileAppVendor enum
538
+ def self.mobile_app_vendor
539
+ require "google/ads/google_ads/v4/enums/mobile_app_vendor_pb"
540
+ Google::Ads::GoogleAds::V4::Enums::MobileAppVendorEnum::MobileAppVendor.descriptor
517
541
  end
518
542
 
519
- # Returns the descriptor for the FlightPlaceholderField enum
543
+ # Returns the descriptor for the SimulationModificationMethod enum
520
544
  #
521
- # @return [Google::Protobuf::EnumDescriptor] for the FlightPlaceholderField enum
522
- def self.flight_placeholder_field
523
- require "google/ads/google_ads/v4/enums/flight_placeholder_field_pb"
524
- Google::Ads::GoogleAds::V4::Enums::FlightPlaceholderFieldEnum::FlightPlaceholderField.descriptor
545
+ # @return [Google::Protobuf::EnumDescriptor] for the SimulationModificationMethod enum
546
+ def self.simulation_modification_method
547
+ require "google/ads/google_ads/v4/enums/simulation_modification_method_pb"
548
+ Google::Ads::GoogleAds::V4::Enums::SimulationModificationMethodEnum::SimulationModificationMethod.descriptor
525
549
  end
526
550
 
527
- # Returns the descriptor for the HotelPlaceholderField enum
551
+ # Returns the descriptor for the SimulationType enum
528
552
  #
529
- # @return [Google::Protobuf::EnumDescriptor] for the HotelPlaceholderField enum
530
- def self.hotel_placeholder_field
531
- require "google/ads/google_ads/v4/enums/hotel_placeholder_field_pb"
532
- Google::Ads::GoogleAds::V4::Enums::HotelPlaceholderFieldEnum::HotelPlaceholderField.descriptor
553
+ # @return [Google::Protobuf::EnumDescriptor] for the SimulationType enum
554
+ def self.simulation_type
555
+ require "google/ads/google_ads/v4/enums/simulation_type_pb"
556
+ Google::Ads::GoogleAds::V4::Enums::SimulationTypeEnum::SimulationType.descriptor
533
557
  end
534
558
 
535
- # Returns the descriptor for the JobPlaceholderField enum
559
+ # Returns the descriptor for the OfflineUserDataJobFailureReason enum
536
560
  #
537
- # @return [Google::Protobuf::EnumDescriptor] for the JobPlaceholderField enum
538
- def self.job_placeholder_field
539
- require "google/ads/google_ads/v4/enums/job_placeholder_field_pb"
540
- Google::Ads::GoogleAds::V4::Enums::JobPlaceholderFieldEnum::JobPlaceholderField.descriptor
561
+ # @return [Google::Protobuf::EnumDescriptor] for the OfflineUserDataJobFailureReason enum
562
+ def self.offline_user_data_job_failure_reason
563
+ require "google/ads/google_ads/v4/enums/offline_user_data_job_failure_reason_pb"
564
+ Google::Ads::GoogleAds::V4::Enums::OfflineUserDataJobFailureReasonEnum::OfflineUserDataJobFailureReason.descriptor
541
565
  end
542
566
 
543
- # Returns the descriptor for the LocalPlaceholderField enum
567
+ # Returns the descriptor for the OfflineUserDataJobStatus enum
544
568
  #
545
- # @return [Google::Protobuf::EnumDescriptor] for the LocalPlaceholderField enum
546
- def self.local_placeholder_field
547
- require "google/ads/google_ads/v4/enums/local_placeholder_field_pb"
548
- Google::Ads::GoogleAds::V4::Enums::LocalPlaceholderFieldEnum::LocalPlaceholderField.descriptor
569
+ # @return [Google::Protobuf::EnumDescriptor] for the OfflineUserDataJobStatus enum
570
+ def self.offline_user_data_job_status
571
+ require "google/ads/google_ads/v4/enums/offline_user_data_job_status_pb"
572
+ Google::Ads::GoogleAds::V4::Enums::OfflineUserDataJobStatusEnum::OfflineUserDataJobStatus.descriptor
549
573
  end
550
574
 
551
- # Returns the descriptor for the LocationExtensionTargetingCriterionField enum
575
+ # Returns the descriptor for the OfflineUserDataJobType enum
552
576
  #
553
- # @return [Google::Protobuf::EnumDescriptor] for the LocationExtensionTargetingCriterionField enum
554
- def self.location_extension_targeting_criterion_field
555
- require "google/ads/google_ads/v4/enums/location_extension_targeting_criterion_field_pb"
556
- Google::Ads::GoogleAds::V4::Enums::LocationExtensionTargetingCriterionFieldEnum::LocationExtensionTargetingCriterionField.descriptor
577
+ # @return [Google::Protobuf::EnumDescriptor] for the OfflineUserDataJobType enum
578
+ def self.offline_user_data_job_type
579
+ require "google/ads/google_ads/v4/enums/offline_user_data_job_type_pb"
580
+ Google::Ads::GoogleAds::V4::Enums::OfflineUserDataJobTypeEnum::OfflineUserDataJobType.descriptor
557
581
  end
558
582
 
559
- # Returns the descriptor for the LocationPlaceholderField enum
583
+ # Returns the descriptor for the AssetFieldType enum
560
584
  #
561
- # @return [Google::Protobuf::EnumDescriptor] for the LocationPlaceholderField enum
562
- def self.location_placeholder_field
563
- require "google/ads/google_ads/v4/enums/location_placeholder_field_pb"
564
- Google::Ads::GoogleAds::V4::Enums::LocationPlaceholderFieldEnum::LocationPlaceholderField.descriptor
585
+ # @return [Google::Protobuf::EnumDescriptor] for the AssetFieldType enum
586
+ def self.asset_field_type
587
+ require "google/ads/google_ads/v4/enums/asset_field_type_pb"
588
+ Google::Ads::GoogleAds::V4::Enums::AssetFieldTypeEnum::AssetFieldType.descriptor
565
589
  end
566
590
 
567
- # Returns the descriptor for the MessagePlaceholderField enum
591
+ # Returns the descriptor for the AssetPerformanceLabel enum
568
592
  #
569
- # @return [Google::Protobuf::EnumDescriptor] for the MessagePlaceholderField enum
570
- def self.message_placeholder_field
571
- require "google/ads/google_ads/v4/enums/message_placeholder_field_pb"
572
- Google::Ads::GoogleAds::V4::Enums::MessagePlaceholderFieldEnum::MessagePlaceholderField.descriptor
593
+ # @return [Google::Protobuf::EnumDescriptor] for the AssetPerformanceLabel enum
594
+ def self.asset_performance_label
595
+ require "google/ads/google_ads/v4/enums/asset_performance_label_pb"
596
+ Google::Ads::GoogleAds::V4::Enums::AssetPerformanceLabelEnum::AssetPerformanceLabel.descriptor
573
597
  end
574
598
 
575
- # Returns the descriptor for the PricePlaceholderField enum
599
+ # Returns the descriptor for the SearchTermTargetingStatus enum
576
600
  #
577
- # @return [Google::Protobuf::EnumDescriptor] for the PricePlaceholderField enum
578
- def self.price_placeholder_field
579
- require "google/ads/google_ads/v4/enums/price_placeholder_field_pb"
580
- Google::Ads::GoogleAds::V4::Enums::PricePlaceholderFieldEnum::PricePlaceholderField.descriptor
601
+ # @return [Google::Protobuf::EnumDescriptor] for the SearchTermTargetingStatus enum
602
+ def self.search_term_targeting_status
603
+ require "google/ads/google_ads/v4/enums/search_term_targeting_status_pb"
604
+ Google::Ads::GoogleAds::V4::Enums::SearchTermTargetingStatusEnum::SearchTermTargetingStatus.descriptor
581
605
  end
582
606
 
583
- # Returns the descriptor for the PromotionPlaceholderField enum
607
+ # Returns the descriptor for the AppStore enum
584
608
  #
585
- # @return [Google::Protobuf::EnumDescriptor] for the PromotionPlaceholderField enum
586
- def self.promotion_placeholder_field
587
- require "google/ads/google_ads/v4/enums/promotion_placeholder_field_pb"
588
- Google::Ads::GoogleAds::V4::Enums::PromotionPlaceholderFieldEnum::PromotionPlaceholderField.descriptor
609
+ # @return [Google::Protobuf::EnumDescriptor] for the AppStore enum
610
+ def self.app_store
611
+ require "google/ads/google_ads/v4/enums/app_store_pb"
612
+ Google::Ads::GoogleAds::V4::Enums::AppStoreEnum::AppStore.descriptor
589
613
  end
590
614
 
591
- # Returns the descriptor for the RealEstatePlaceholderField enum
615
+ # Returns the descriptor for the CallConversionReportingState enum
592
616
  #
593
- # @return [Google::Protobuf::EnumDescriptor] for the RealEstatePlaceholderField enum
594
- def self.real_estate_placeholder_field
595
- require "google/ads/google_ads/v4/enums/real_estate_placeholder_field_pb"
596
- Google::Ads::GoogleAds::V4::Enums::RealEstatePlaceholderFieldEnum::RealEstatePlaceholderField.descriptor
617
+ # @return [Google::Protobuf::EnumDescriptor] for the CallConversionReportingState enum
618
+ def self.call_conversion_reporting_state
619
+ require "google/ads/google_ads/v4/enums/call_conversion_reporting_state_pb"
620
+ Google::Ads::GoogleAds::V4::Enums::CallConversionReportingStateEnum::CallConversionReportingState.descriptor
597
621
  end
598
622
 
599
- # Returns the descriptor for the SitelinkPlaceholderField enum
623
+ # Returns the descriptor for the PriceExtensionPriceQualifier enum
600
624
  #
601
- # @return [Google::Protobuf::EnumDescriptor] for the SitelinkPlaceholderField enum
602
- def self.sitelink_placeholder_field
603
- require "google/ads/google_ads/v4/enums/sitelink_placeholder_field_pb"
604
- Google::Ads::GoogleAds::V4::Enums::SitelinkPlaceholderFieldEnum::SitelinkPlaceholderField.descriptor
625
+ # @return [Google::Protobuf::EnumDescriptor] for the PriceExtensionPriceQualifier enum
626
+ def self.price_extension_price_qualifier
627
+ require "google/ads/google_ads/v4/enums/price_extension_price_qualifier_pb"
628
+ Google::Ads::GoogleAds::V4::Enums::PriceExtensionPriceQualifierEnum::PriceExtensionPriceQualifier.descriptor
605
629
  end
606
630
 
607
- # Returns the descriptor for the StructuredSnippetPlaceholderField enum
631
+ # Returns the descriptor for the PriceExtensionPriceUnit enum
608
632
  #
609
- # @return [Google::Protobuf::EnumDescriptor] for the StructuredSnippetPlaceholderField enum
610
- def self.structured_snippet_placeholder_field
611
- require "google/ads/google_ads/v4/enums/structured_snippet_placeholder_field_pb"
612
- Google::Ads::GoogleAds::V4::Enums::StructuredSnippetPlaceholderFieldEnum::StructuredSnippetPlaceholderField.descriptor
633
+ # @return [Google::Protobuf::EnumDescriptor] for the PriceExtensionPriceUnit enum
634
+ def self.price_extension_price_unit
635
+ require "google/ads/google_ads/v4/enums/price_extension_price_unit_pb"
636
+ Google::Ads::GoogleAds::V4::Enums::PriceExtensionPriceUnitEnum::PriceExtensionPriceUnit.descriptor
613
637
  end
614
638
 
615
- # Returns the descriptor for the TravelPlaceholderField enum
639
+ # Returns the descriptor for the PriceExtensionType enum
616
640
  #
617
- # @return [Google::Protobuf::EnumDescriptor] for the TravelPlaceholderField enum
618
- def self.travel_placeholder_field
619
- require "google/ads/google_ads/v4/enums/travel_placeholder_field_pb"
620
- Google::Ads::GoogleAds::V4::Enums::TravelPlaceholderFieldEnum::TravelPlaceholderField.descriptor
641
+ # @return [Google::Protobuf::EnumDescriptor] for the PriceExtensionType enum
642
+ def self.price_extension_type
643
+ require "google/ads/google_ads/v4/enums/price_extension_type_pb"
644
+ Google::Ads::GoogleAds::V4::Enums::PriceExtensionTypeEnum::PriceExtensionType.descriptor
621
645
  end
622
646
 
623
- # Returns the descriptor for the MobileDeviceType enum
647
+ # Returns the descriptor for the PromotionExtensionDiscountModifier enum
624
648
  #
625
- # @return [Google::Protobuf::EnumDescriptor] for the MobileDeviceType enum
626
- def self.mobile_device_type
627
- require "google/ads/google_ads/v4/enums/mobile_device_type_pb"
628
- Google::Ads::GoogleAds::V4::Enums::MobileDeviceTypeEnum::MobileDeviceType.descriptor
649
+ # @return [Google::Protobuf::EnumDescriptor] for the PromotionExtensionDiscountModifier enum
650
+ def self.promotion_extension_discount_modifier
651
+ require "google/ads/google_ads/v4/enums/promotion_extension_discount_modifier_pb"
652
+ Google::Ads::GoogleAds::V4::Enums::PromotionExtensionDiscountModifierEnum::PromotionExtensionDiscountModifier.descriptor
629
653
  end
630
654
 
631
- # Returns the descriptor for the InvoiceType enum
655
+ # Returns the descriptor for the PromotionExtensionOccasion enum
632
656
  #
633
- # @return [Google::Protobuf::EnumDescriptor] for the InvoiceType enum
634
- def self.invoice_type
635
- require "google/ads/google_ads/v4/enums/invoice_type_pb"
636
- Google::Ads::GoogleAds::V4::Enums::InvoiceTypeEnum::InvoiceType.descriptor
657
+ # @return [Google::Protobuf::EnumDescriptor] for the PromotionExtensionOccasion enum
658
+ def self.promotion_extension_occasion
659
+ require "google/ads/google_ads/v4/enums/promotion_extension_occasion_pb"
660
+ Google::Ads::GoogleAds::V4::Enums::PromotionExtensionOccasionEnum::PromotionExtensionOccasion.descriptor
637
661
  end
638
662
 
639
- # Returns the descriptor for the GeoTargetConstantStatus enum
663
+ # Returns the descriptor for the RecommendationType enum
640
664
  #
641
- # @return [Google::Protobuf::EnumDescriptor] for the GeoTargetConstantStatus enum
642
- def self.geo_target_constant_status
643
- require "google/ads/google_ads/v4/enums/geo_target_constant_status_pb"
644
- Google::Ads::GoogleAds::V4::Enums::GeoTargetConstantStatusEnum::GeoTargetConstantStatus.descriptor
665
+ # @return [Google::Protobuf::EnumDescriptor] for the RecommendationType enum
666
+ def self.recommendation_type
667
+ require "google/ads/google_ads/v4/enums/recommendation_type_pb"
668
+ Google::Ads::GoogleAds::V4::Enums::RecommendationTypeEnum::RecommendationType.descriptor
645
669
  end
646
670
 
647
- # Returns the descriptor for the CampaignCriterionStatus enum
671
+ # Returns the descriptor for the TargetCpaOptInRecommendationGoal enum
648
672
  #
649
- # @return [Google::Protobuf::EnumDescriptor] for the CampaignCriterionStatus enum
650
- def self.campaign_criterion_status
651
- require "google/ads/google_ads/v4/enums/campaign_criterion_status_pb"
652
- Google::Ads::GoogleAds::V4::Enums::CampaignCriterionStatusEnum::CampaignCriterionStatus.descriptor
673
+ # @return [Google::Protobuf::EnumDescriptor] for the TargetCpaOptInRecommendationGoal enum
674
+ def self.target_cpa_opt_in_recommendation_goal
675
+ require "google/ads/google_ads/v4/enums/target_cpa_opt_in_recommendation_goal_pb"
676
+ Google::Ads::GoogleAds::V4::Enums::TargetCpaOptInRecommendationGoalEnum::TargetCpaOptInRecommendationGoal.descriptor
653
677
  end
654
678
 
655
- # Returns the descriptor for the TrackingCodePageFormat enum
679
+ # Returns the descriptor for the ServedAssetFieldType enum
656
680
  #
657
- # @return [Google::Protobuf::EnumDescriptor] for the TrackingCodePageFormat enum
658
- def self.tracking_code_page_format
659
- require "google/ads/google_ads/v4/enums/tracking_code_page_format_pb"
660
- Google::Ads::GoogleAds::V4::Enums::TrackingCodePageFormatEnum::TrackingCodePageFormat.descriptor
681
+ # @return [Google::Protobuf::EnumDescriptor] for the ServedAssetFieldType enum
682
+ def self.served_asset_field_type
683
+ require "google/ads/google_ads/v4/enums/served_asset_field_type_pb"
684
+ Google::Ads::GoogleAds::V4::Enums::ServedAssetFieldTypeEnum::ServedAssetFieldType.descriptor
661
685
  end
662
686
 
663
- # Returns the descriptor for the TrackingCodeType enum
687
+ # Returns the descriptor for the DisplayAdFormatSetting enum
664
688
  #
665
- # @return [Google::Protobuf::EnumDescriptor] for the TrackingCodeType enum
666
- def self.tracking_code_type
667
- require "google/ads/google_ads/v4/enums/tracking_code_type_pb"
668
- Google::Ads::GoogleAds::V4::Enums::TrackingCodeTypeEnum::TrackingCodeType.descriptor
689
+ # @return [Google::Protobuf::EnumDescriptor] for the DisplayAdFormatSetting enum
690
+ def self.display_ad_format_setting
691
+ require "google/ads/google_ads/v4/enums/display_ad_format_setting_pb"
692
+ Google::Ads::GoogleAds::V4::Enums::DisplayAdFormatSettingEnum::DisplayAdFormatSetting.descriptor
669
693
  end
670
694
 
671
- # Returns the descriptor for the FeedItemTargetDevice enum
695
+ # Returns the descriptor for the DisplayUploadProductType enum
672
696
  #
673
- # @return [Google::Protobuf::EnumDescriptor] for the FeedItemTargetDevice enum
674
- def self.feed_item_target_device
675
- require "google/ads/google_ads/v4/enums/feed_item_target_device_pb"
676
- Google::Ads::GoogleAds::V4::Enums::FeedItemTargetDeviceEnum::FeedItemTargetDevice.descriptor
697
+ # @return [Google::Protobuf::EnumDescriptor] for the DisplayUploadProductType enum
698
+ def self.display_upload_product_type
699
+ require "google/ads/google_ads/v4/enums/display_upload_product_type_pb"
700
+ Google::Ads::GoogleAds::V4::Enums::DisplayUploadProductTypeEnum::DisplayUploadProductType.descriptor
677
701
  end
678
702
 
679
- # Returns the descriptor for the FeedItemTargetStatus enum
703
+ # Returns the descriptor for the LegacyAppInstallAdAppStore enum
680
704
  #
681
- # @return [Google::Protobuf::EnumDescriptor] for the FeedItemTargetStatus enum
682
- def self.feed_item_target_status
683
- require "google/ads/google_ads/v4/enums/feed_item_target_status_pb"
684
- Google::Ads::GoogleAds::V4::Enums::FeedItemTargetStatusEnum::FeedItemTargetStatus.descriptor
705
+ # @return [Google::Protobuf::EnumDescriptor] for the LegacyAppInstallAdAppStore enum
706
+ def self.legacy_app_install_ad_app_store
707
+ require "google/ads/google_ads/v4/enums/legacy_app_install_ad_app_store_pb"
708
+ Google::Ads::GoogleAds::V4::Enums::LegacyAppInstallAdAppStoreEnum::LegacyAppInstallAdAppStore.descriptor
685
709
  end
686
710
 
687
- # Returns the descriptor for the FeedItemTargetType enum
711
+ # Returns the descriptor for the AppUrlOperatingSystemType enum
688
712
  #
689
- # @return [Google::Protobuf::EnumDescriptor] for the FeedItemTargetType enum
690
- def self.feed_item_target_type
691
- require "google/ads/google_ads/v4/enums/feed_item_target_type_pb"
692
- Google::Ads::GoogleAds::V4::Enums::FeedItemTargetTypeEnum::FeedItemTargetType.descriptor
713
+ # @return [Google::Protobuf::EnumDescriptor] for the AppUrlOperatingSystemType enum
714
+ def self.app_url_operating_system_type
715
+ require "google/ads/google_ads/v4/enums/app_url_operating_system_type_pb"
716
+ Google::Ads::GoogleAds::V4::Enums::AppUrlOperatingSystemTypeEnum::AppUrlOperatingSystemType.descriptor
693
717
  end
694
718
 
695
- # Returns the descriptor for the BudgetDeliveryMethod enum
719
+ # Returns the descriptor for the AdType enum
696
720
  #
697
- # @return [Google::Protobuf::EnumDescriptor] for the BudgetDeliveryMethod enum
698
- def self.budget_delivery_method
699
- require "google/ads/google_ads/v4/enums/budget_delivery_method_pb"
700
- Google::Ads::GoogleAds::V4::Enums::BudgetDeliveryMethodEnum::BudgetDeliveryMethod.descriptor
721
+ # @return [Google::Protobuf::EnumDescriptor] for the AdType enum
722
+ def self.ad_type
723
+ require "google/ads/google_ads/v4/enums/ad_type_pb"
724
+ Google::Ads::GoogleAds::V4::Enums::AdTypeEnum::AdType.descriptor
701
725
  end
702
726
 
703
- # Returns the descriptor for the BudgetPeriod enum
727
+ # Returns the descriptor for the SystemManagedResourceSource enum
704
728
  #
705
- # @return [Google::Protobuf::EnumDescriptor] for the BudgetPeriod enum
706
- def self.budget_period
707
- require "google/ads/google_ads/v4/enums/budget_period_pb"
708
- Google::Ads::GoogleAds::V4::Enums::BudgetPeriodEnum::BudgetPeriod.descriptor
729
+ # @return [Google::Protobuf::EnumDescriptor] for the SystemManagedResourceSource enum
730
+ def self.system_managed_resource_source
731
+ require "google/ads/google_ads/v4/enums/system_managed_entity_source_pb"
732
+ Google::Ads::GoogleAds::V4::Enums::SystemManagedResourceSourceEnum::SystemManagedResourceSource.descriptor
709
733
  end
710
734
 
711
- # Returns the descriptor for the BudgetStatus enum
735
+ # Returns the descriptor for the LabelStatus enum
712
736
  #
713
- # @return [Google::Protobuf::EnumDescriptor] for the BudgetStatus enum
714
- def self.budget_status
715
- require "google/ads/google_ads/v4/enums/budget_status_pb"
716
- Google::Ads::GoogleAds::V4::Enums::BudgetStatusEnum::BudgetStatus.descriptor
737
+ # @return [Google::Protobuf::EnumDescriptor] for the LabelStatus enum
738
+ def self.label_status
739
+ require "google/ads/google_ads/v4/enums/label_status_pb"
740
+ Google::Ads::GoogleAds::V4::Enums::LabelStatusEnum::LabelStatus.descriptor
717
741
  end
718
742
 
719
- # Returns the descriptor for the BudgetType enum
743
+ # Returns the descriptor for the PlacementType enum
720
744
  #
721
- # @return [Google::Protobuf::EnumDescriptor] for the BudgetType enum
722
- def self.budget_type
723
- require "google/ads/google_ads/v4/enums/budget_type_pb"
724
- Google::Ads::GoogleAds::V4::Enums::BudgetTypeEnum::BudgetType.descriptor
745
+ # @return [Google::Protobuf::EnumDescriptor] for the PlacementType enum
746
+ def self.placement_type
747
+ require "google/ads/google_ads/v4/enums/placement_type_pb"
748
+ Google::Ads::GoogleAds::V4::Enums::PlacementTypeEnum::PlacementType.descriptor
725
749
  end
726
750
 
727
- # Returns the descriptor for the PolicyTopicEntryType enum
751
+ # Returns the descriptor for the AdGroupCriterionApprovalStatus enum
728
752
  #
729
- # @return [Google::Protobuf::EnumDescriptor] for the PolicyTopicEntryType enum
730
- def self.policy_topic_entry_type
731
- require "google/ads/google_ads/v4/enums/policy_topic_entry_type_pb"
732
- Google::Ads::GoogleAds::V4::Enums::PolicyTopicEntryTypeEnum::PolicyTopicEntryType.descriptor
753
+ # @return [Google::Protobuf::EnumDescriptor] for the AdGroupCriterionApprovalStatus enum
754
+ def self.ad_group_criterion_approval_status
755
+ require "google/ads/google_ads/v4/enums/ad_group_criterion_approval_status_pb"
756
+ Google::Ads::GoogleAds::V4::Enums::AdGroupCriterionApprovalStatusEnum::AdGroupCriterionApprovalStatus.descriptor
733
757
  end
734
758
 
735
- # Returns the descriptor for the PolicyTopicEvidenceDestinationMismatchUrlType enum
759
+ # Returns the descriptor for the AdGroupCriterionStatus enum
736
760
  #
737
- # @return [Google::Protobuf::EnumDescriptor] for the PolicyTopicEvidenceDestinationMismatchUrlType enum
738
- def self.policy_topic_evidence_destination_mismatch_url_type
739
- require "google/ads/google_ads/v4/enums/policy_topic_evidence_destination_mismatch_url_type_pb"
740
- Google::Ads::GoogleAds::V4::Enums::PolicyTopicEvidenceDestinationMismatchUrlTypeEnum::PolicyTopicEvidenceDestinationMismatchUrlType.descriptor
761
+ # @return [Google::Protobuf::EnumDescriptor] for the AdGroupCriterionStatus enum
762
+ def self.ad_group_criterion_status
763
+ require "google/ads/google_ads/v4/enums/ad_group_criterion_status_pb"
764
+ Google::Ads::GoogleAds::V4::Enums::AdGroupCriterionStatusEnum::AdGroupCriterionStatus.descriptor
741
765
  end
742
766
 
743
- # Returns the descriptor for the PolicyTopicEvidenceDestinationNotWorkingDevice enum
767
+ # Returns the descriptor for the BiddingSource enum
744
768
  #
745
- # @return [Google::Protobuf::EnumDescriptor] for the PolicyTopicEvidenceDestinationNotWorkingDevice enum
746
- def self.policy_topic_evidence_destination_not_working_device
747
- require "google/ads/google_ads/v4/enums/policy_topic_evidence_destination_not_working_device_pb"
748
- Google::Ads::GoogleAds::V4::Enums::PolicyTopicEvidenceDestinationNotWorkingDeviceEnum::PolicyTopicEvidenceDestinationNotWorkingDevice.descriptor
769
+ # @return [Google::Protobuf::EnumDescriptor] for the BiddingSource enum
770
+ def self.bidding_source
771
+ require "google/ads/google_ads/v4/enums/bidding_source_pb"
772
+ Google::Ads::GoogleAds::V4::Enums::BiddingSourceEnum::BiddingSource.descriptor
749
773
  end
750
774
 
751
- # Returns the descriptor for the PolicyTopicEvidenceDestinationNotWorkingDnsErrorType enum
775
+ # Returns the descriptor for the CriterionSystemServingStatus enum
752
776
  #
753
- # @return [Google::Protobuf::EnumDescriptor] for the PolicyTopicEvidenceDestinationNotWorkingDnsErrorType enum
754
- def self.policy_topic_evidence_destination_not_working_dns_error_type
755
- require "google/ads/google_ads/v4/enums/policy_topic_evidence_destination_not_working_dns_error_type_pb"
756
- Google::Ads::GoogleAds::V4::Enums::PolicyTopicEvidenceDestinationNotWorkingDnsErrorTypeEnum::PolicyTopicEvidenceDestinationNotWorkingDnsErrorType.descriptor
777
+ # @return [Google::Protobuf::EnumDescriptor] for the CriterionSystemServingStatus enum
778
+ def self.criterion_system_serving_status
779
+ require "google/ads/google_ads/v4/enums/criterion_system_serving_status_pb"
780
+ Google::Ads::GoogleAds::V4::Enums::CriterionSystemServingStatusEnum::CriterionSystemServingStatus.descriptor
757
781
  end
758
782
 
759
- # Returns the descriptor for the AssetFieldType enum
783
+ # Returns the descriptor for the QualityScoreBucket enum
760
784
  #
761
- # @return [Google::Protobuf::EnumDescriptor] for the AssetFieldType enum
762
- def self.asset_field_type
763
- require "google/ads/google_ads/v4/enums/asset_field_type_pb"
764
- Google::Ads::GoogleAds::V4::Enums::AssetFieldTypeEnum::AssetFieldType.descriptor
785
+ # @return [Google::Protobuf::EnumDescriptor] for the QualityScoreBucket enum
786
+ def self.quality_score_bucket
787
+ require "google/ads/google_ads/v4/enums/quality_score_bucket_pb"
788
+ Google::Ads::GoogleAds::V4::Enums::QualityScoreBucketEnum::QualityScoreBucket.descriptor
765
789
  end
766
790
 
767
- # Returns the descriptor for the AssetPerformanceLabel enum
791
+ # Returns the descriptor for the KeywordPlanNetwork enum
768
792
  #
769
- # @return [Google::Protobuf::EnumDescriptor] for the AssetPerformanceLabel enum
770
- def self.asset_performance_label
771
- require "google/ads/google_ads/v4/enums/asset_performance_label_pb"
772
- Google::Ads::GoogleAds::V4::Enums::AssetPerformanceLabelEnum::AssetPerformanceLabel.descriptor
793
+ # @return [Google::Protobuf::EnumDescriptor] for the KeywordPlanNetwork enum
794
+ def self.keyword_plan_network
795
+ require "google/ads/google_ads/v4/enums/keyword_plan_network_pb"
796
+ Google::Ads::GoogleAds::V4::Enums::KeywordPlanNetworkEnum::KeywordPlanNetwork.descriptor
773
797
  end
774
798
 
775
- # Returns the descriptor for the PolicyApprovalStatus enum
799
+ # Returns the descriptor for the BillingSetupStatus enum
776
800
  #
777
- # @return [Google::Protobuf::EnumDescriptor] for the PolicyApprovalStatus enum
778
- def self.policy_approval_status
779
- require "google/ads/google_ads/v4/enums/policy_approval_status_pb"
780
- Google::Ads::GoogleAds::V4::Enums::PolicyApprovalStatusEnum::PolicyApprovalStatus.descriptor
801
+ # @return [Google::Protobuf::EnumDescriptor] for the BillingSetupStatus enum
802
+ def self.billing_setup_status
803
+ require "google/ads/google_ads/v4/enums/billing_setup_status_pb"
804
+ Google::Ads::GoogleAds::V4::Enums::BillingSetupStatusEnum::BillingSetupStatus.descriptor
781
805
  end
782
806
 
783
- # Returns the descriptor for the PolicyReviewStatus enum
807
+ # Returns the descriptor for the CampaignSharedSetStatus enum
784
808
  #
785
- # @return [Google::Protobuf::EnumDescriptor] for the PolicyReviewStatus enum
786
- def self.policy_review_status
787
- require "google/ads/google_ads/v4/enums/policy_review_status_pb"
788
- Google::Ads::GoogleAds::V4::Enums::PolicyReviewStatusEnum::PolicyReviewStatus.descriptor
809
+ # @return [Google::Protobuf::EnumDescriptor] for the CampaignSharedSetStatus enum
810
+ def self.campaign_shared_set_status
811
+ require "google/ads/google_ads/v4/enums/campaign_shared_set_status_pb"
812
+ Google::Ads::GoogleAds::V4::Enums::CampaignSharedSetStatusEnum::CampaignSharedSetStatus.descriptor
789
813
  end
790
814
 
791
815
  # Returns the descriptor for the AdvertisingChannelSubType enum
@@ -828,47 +852,23 @@ module Google
828
852
  Google::Ads::GoogleAds::V4::Enums::UserInterestTaxonomyTypeEnum::UserInterestTaxonomyType.descriptor
829
853
  end
830
854
 
831
- # Returns the descriptor for the ProductBiddingCategoryStatus enum
855
+ # Returns the descriptor for the CustomerPayPerConversionEligibilityFailureReason enum
832
856
  #
833
- # @return [Google::Protobuf::EnumDescriptor] for the ProductBiddingCategoryStatus enum
834
- def self.product_bidding_category_status
835
- require "google/ads/google_ads/v4/enums/product_bidding_category_status_pb"
836
- Google::Ads::GoogleAds::V4::Enums::ProductBiddingCategoryStatusEnum::ProductBiddingCategoryStatus.descriptor
857
+ # @return [Google::Protobuf::EnumDescriptor] for the CustomerPayPerConversionEligibilityFailureReason enum
858
+ def self.customer_pay_per_conversion_eligibility_failure_reason
859
+ require "google/ads/google_ads/v4/enums/customer_pay_per_conversion_eligibility_failure_reason_pb"
860
+ Google::Ads::GoogleAds::V4::Enums::CustomerPayPerConversionEligibilityFailureReasonEnum::CustomerPayPerConversionEligibilityFailureReason.descriptor
837
861
  end
838
862
 
839
- # Returns the descriptor for the PlacementType enum
863
+ # Returns the descriptor for the TargetImpressionShareLocation enum
840
864
  #
841
- # @return [Google::Protobuf::EnumDescriptor] for the PlacementType enum
842
- def self.placement_type
843
- require "google/ads/google_ads/v4/enums/placement_type_pb"
844
- Google::Ads::GoogleAds::V4::Enums::PlacementTypeEnum::PlacementType.descriptor
865
+ # @return [Google::Protobuf::EnumDescriptor] for the TargetImpressionShareLocation enum
866
+ def self.target_impression_share_location
867
+ require "google/ads/google_ads/v4/enums/target_impression_share_location_pb"
868
+ Google::Ads::GoogleAds::V4::Enums::TargetImpressionShareLocationEnum::TargetImpressionShareLocation.descriptor
845
869
  end
846
870
 
847
- # Returns the descriptor for the CampaignDraftStatus enum
848
- #
849
- # @return [Google::Protobuf::EnumDescriptor] for the CampaignDraftStatus enum
850
- def self.campaign_draft_status
851
- require "google/ads/google_ads/v4/enums/campaign_draft_status_pb"
852
- Google::Ads::GoogleAds::V4::Enums::CampaignDraftStatusEnum::CampaignDraftStatus.descriptor
853
- end
854
-
855
- # Returns the descriptor for the BidModifierSource enum
856
- #
857
- # @return [Google::Protobuf::EnumDescriptor] for the BidModifierSource enum
858
- def self.bid_modifier_source
859
- require "google/ads/google_ads/v4/enums/bid_modifier_source_pb"
860
- Google::Ads::GoogleAds::V4::Enums::BidModifierSourceEnum::BidModifierSource.descriptor
861
- end
862
-
863
- # Returns the descriptor for the TargetImpressionShareLocation enum
864
- #
865
- # @return [Google::Protobuf::EnumDescriptor] for the TargetImpressionShareLocation enum
866
- def self.target_impression_share_location
867
- require "google/ads/google_ads/v4/enums/target_impression_share_location_pb"
868
- Google::Ads::GoogleAds::V4::Enums::TargetImpressionShareLocationEnum::TargetImpressionShareLocation.descriptor
869
- end
870
-
871
- # Returns the descriptor for the FrequencyCapEventType enum
871
+ # Returns the descriptor for the FrequencyCapEventType enum
872
872
  #
873
873
  # @return [Google::Protobuf::EnumDescriptor] for the FrequencyCapEventType enum
874
874
  def self.frequency_cap_event_type
@@ -1028,364 +1028,252 @@ module Google
1028
1028
  Google::Ads::GoogleAds::V4::Enums::VanityPharmaTextEnum::VanityPharmaText.descriptor
1029
1029
  end
1030
1030
 
1031
- # Returns the descriptor for the LabelStatus enum
1031
+ # Returns the descriptor for the InvoiceType enum
1032
1032
  #
1033
- # @return [Google::Protobuf::EnumDescriptor] for the LabelStatus enum
1034
- def self.label_status
1035
- require "google/ads/google_ads/v4/enums/label_status_pb"
1036
- Google::Ads::GoogleAds::V4::Enums::LabelStatusEnum::LabelStatus.descriptor
1033
+ # @return [Google::Protobuf::EnumDescriptor] for the InvoiceType enum
1034
+ def self.invoice_type
1035
+ require "google/ads/google_ads/v4/enums/invoice_type_pb"
1036
+ Google::Ads::GoogleAds::V4::Enums::InvoiceTypeEnum::InvoiceType.descriptor
1037
1037
  end
1038
1038
 
1039
- # Returns the descriptor for the CustomerPayPerConversionEligibilityFailureReason enum
1039
+ # Returns the descriptor for the SharedSetStatus enum
1040
1040
  #
1041
- # @return [Google::Protobuf::EnumDescriptor] for the CustomerPayPerConversionEligibilityFailureReason enum
1042
- def self.customer_pay_per_conversion_eligibility_failure_reason
1043
- require "google/ads/google_ads/v4/enums/customer_pay_per_conversion_eligibility_failure_reason_pb"
1044
- Google::Ads::GoogleAds::V4::Enums::CustomerPayPerConversionEligibilityFailureReasonEnum::CustomerPayPerConversionEligibilityFailureReason.descriptor
1041
+ # @return [Google::Protobuf::EnumDescriptor] for the SharedSetStatus enum
1042
+ def self.shared_set_status
1043
+ require "google/ads/google_ads/v4/enums/shared_set_status_pb"
1044
+ Google::Ads::GoogleAds::V4::Enums::SharedSetStatusEnum::SharedSetStatus.descriptor
1045
1045
  end
1046
1046
 
1047
- # Returns the descriptor for the CustomInterestMemberType enum
1047
+ # Returns the descriptor for the SharedSetType enum
1048
1048
  #
1049
- # @return [Google::Protobuf::EnumDescriptor] for the CustomInterestMemberType enum
1050
- def self.custom_interest_member_type
1051
- require "google/ads/google_ads/v4/enums/custom_interest_member_type_pb"
1052
- Google::Ads::GoogleAds::V4::Enums::CustomInterestMemberTypeEnum::CustomInterestMemberType.descriptor
1049
+ # @return [Google::Protobuf::EnumDescriptor] for the SharedSetType enum
1050
+ def self.shared_set_type
1051
+ require "google/ads/google_ads/v4/enums/shared_set_type_pb"
1052
+ Google::Ads::GoogleAds::V4::Enums::SharedSetTypeEnum::SharedSetType.descriptor
1053
1053
  end
1054
1054
 
1055
- # Returns the descriptor for the CustomInterestStatus enum
1055
+ # Returns the descriptor for the OperatingSystemVersionOperatorType enum
1056
1056
  #
1057
- # @return [Google::Protobuf::EnumDescriptor] for the CustomInterestStatus enum
1058
- def self.custom_interest_status
1059
- require "google/ads/google_ads/v4/enums/custom_interest_status_pb"
1060
- Google::Ads::GoogleAds::V4::Enums::CustomInterestStatusEnum::CustomInterestStatus.descriptor
1057
+ # @return [Google::Protobuf::EnumDescriptor] for the OperatingSystemVersionOperatorType enum
1058
+ def self.operating_system_version_operator_type
1059
+ require "google/ads/google_ads/v4/enums/operating_system_version_operator_type_pb"
1060
+ Google::Ads::GoogleAds::V4::Enums::OperatingSystemVersionOperatorTypeEnum::OperatingSystemVersionOperatorType.descriptor
1061
1061
  end
1062
1062
 
1063
- # Returns the descriptor for the CustomInterestType enum
1063
+ # Returns the descriptor for the BiddingStrategyStatus enum
1064
1064
  #
1065
- # @return [Google::Protobuf::EnumDescriptor] for the CustomInterestType enum
1066
- def self.custom_interest_type
1067
- require "google/ads/google_ads/v4/enums/custom_interest_type_pb"
1068
- Google::Ads::GoogleAds::V4::Enums::CustomInterestTypeEnum::CustomInterestType.descriptor
1065
+ # @return [Google::Protobuf::EnumDescriptor] for the BiddingStrategyStatus enum
1066
+ def self.bidding_strategy_status
1067
+ require "google/ads/google_ads/v4/enums/bidding_strategy_status_pb"
1068
+ Google::Ads::GoogleAds::V4::Enums::BiddingStrategyStatusEnum::BiddingStrategyStatus.descriptor
1069
1069
  end
1070
1070
 
1071
- # Returns the descriptor for the GoogleAdsFieldCategory enum
1071
+ # Returns the descriptor for the CustomerMatchUploadKeyType enum
1072
1072
  #
1073
- # @return [Google::Protobuf::EnumDescriptor] for the GoogleAdsFieldCategory enum
1074
- def self.google_ads_field_category
1075
- require "google/ads/google_ads/v4/enums/google_ads_field_category_pb"
1076
- Google::Ads::GoogleAds::V4::Enums::GoogleAdsFieldCategoryEnum::GoogleAdsFieldCategory.descriptor
1073
+ # @return [Google::Protobuf::EnumDescriptor] for the CustomerMatchUploadKeyType enum
1074
+ def self.customer_match_upload_key_type
1075
+ require "google/ads/google_ads/v4/enums/customer_match_upload_key_type_pb"
1076
+ Google::Ads::GoogleAds::V4::Enums::CustomerMatchUploadKeyTypeEnum::CustomerMatchUploadKeyType.descriptor
1077
1077
  end
1078
1078
 
1079
- # Returns the descriptor for the GoogleAdsFieldDataType enum
1079
+ # Returns the descriptor for the UserListCombinedRuleOperator enum
1080
1080
  #
1081
- # @return [Google::Protobuf::EnumDescriptor] for the GoogleAdsFieldDataType enum
1082
- def self.google_ads_field_data_type
1083
- require "google/ads/google_ads/v4/enums/google_ads_field_data_type_pb"
1084
- Google::Ads::GoogleAds::V4::Enums::GoogleAdsFieldDataTypeEnum::GoogleAdsFieldDataType.descriptor
1081
+ # @return [Google::Protobuf::EnumDescriptor] for the UserListCombinedRuleOperator enum
1082
+ def self.user_list_combined_rule_operator
1083
+ require "google/ads/google_ads/v4/enums/user_list_combined_rule_operator_pb"
1084
+ Google::Ads::GoogleAds::V4::Enums::UserListCombinedRuleOperatorEnum::UserListCombinedRuleOperator.descriptor
1085
1085
  end
1086
1086
 
1087
- # Returns the descriptor for the OfflineUserDataJobFailureReason enum
1087
+ # Returns the descriptor for the UserListCrmDataSourceType enum
1088
1088
  #
1089
- # @return [Google::Protobuf::EnumDescriptor] for the OfflineUserDataJobFailureReason enum
1090
- def self.offline_user_data_job_failure_reason
1091
- require "google/ads/google_ads/v4/enums/offline_user_data_job_failure_reason_pb"
1092
- Google::Ads::GoogleAds::V4::Enums::OfflineUserDataJobFailureReasonEnum::OfflineUserDataJobFailureReason.descriptor
1089
+ # @return [Google::Protobuf::EnumDescriptor] for the UserListCrmDataSourceType enum
1090
+ def self.user_list_crm_data_source_type
1091
+ require "google/ads/google_ads/v4/enums/user_list_crm_data_source_type_pb"
1092
+ Google::Ads::GoogleAds::V4::Enums::UserListCrmDataSourceTypeEnum::UserListCrmDataSourceType.descriptor
1093
1093
  end
1094
1094
 
1095
- # Returns the descriptor for the OfflineUserDataJobStatus enum
1095
+ # Returns the descriptor for the UserListDateRuleItemOperator enum
1096
1096
  #
1097
- # @return [Google::Protobuf::EnumDescriptor] for the OfflineUserDataJobStatus enum
1098
- def self.offline_user_data_job_status
1099
- require "google/ads/google_ads/v4/enums/offline_user_data_job_status_pb"
1100
- Google::Ads::GoogleAds::V4::Enums::OfflineUserDataJobStatusEnum::OfflineUserDataJobStatus.descriptor
1097
+ # @return [Google::Protobuf::EnumDescriptor] for the UserListDateRuleItemOperator enum
1098
+ def self.user_list_date_rule_item_operator
1099
+ require "google/ads/google_ads/v4/enums/user_list_date_rule_item_operator_pb"
1100
+ Google::Ads::GoogleAds::V4::Enums::UserListDateRuleItemOperatorEnum::UserListDateRuleItemOperator.descriptor
1101
1101
  end
1102
1102
 
1103
- # Returns the descriptor for the OfflineUserDataJobType enum
1103
+ # Returns the descriptor for the UserListLogicalRuleOperator enum
1104
1104
  #
1105
- # @return [Google::Protobuf::EnumDescriptor] for the OfflineUserDataJobType enum
1106
- def self.offline_user_data_job_type
1107
- require "google/ads/google_ads/v4/enums/offline_user_data_job_type_pb"
1108
- Google::Ads::GoogleAds::V4::Enums::OfflineUserDataJobTypeEnum::OfflineUserDataJobType.descriptor
1105
+ # @return [Google::Protobuf::EnumDescriptor] for the UserListLogicalRuleOperator enum
1106
+ def self.user_list_logical_rule_operator
1107
+ require "google/ads/google_ads/v4/enums/user_list_logical_rule_operator_pb"
1108
+ Google::Ads::GoogleAds::V4::Enums::UserListLogicalRuleOperatorEnum::UserListLogicalRuleOperator.descriptor
1109
1109
  end
1110
1110
 
1111
- # Returns the descriptor for the BiddingStrategyStatus enum
1111
+ # Returns the descriptor for the UserListNumberRuleItemOperator enum
1112
1112
  #
1113
- # @return [Google::Protobuf::EnumDescriptor] for the BiddingStrategyStatus enum
1114
- def self.bidding_strategy_status
1115
- require "google/ads/google_ads/v4/enums/bidding_strategy_status_pb"
1116
- Google::Ads::GoogleAds::V4::Enums::BiddingStrategyStatusEnum::BiddingStrategyStatus.descriptor
1113
+ # @return [Google::Protobuf::EnumDescriptor] for the UserListNumberRuleItemOperator enum
1114
+ def self.user_list_number_rule_item_operator
1115
+ require "google/ads/google_ads/v4/enums/user_list_number_rule_item_operator_pb"
1116
+ Google::Ads::GoogleAds::V4::Enums::UserListNumberRuleItemOperatorEnum::UserListNumberRuleItemOperator.descriptor
1117
1117
  end
1118
1118
 
1119
- # Returns the descriptor for the ManagerLinkStatus enum
1119
+ # Returns the descriptor for the UserListPrepopulationStatus enum
1120
1120
  #
1121
- # @return [Google::Protobuf::EnumDescriptor] for the ManagerLinkStatus enum
1122
- def self.manager_link_status
1123
- require "google/ads/google_ads/v4/enums/manager_link_status_pb"
1124
- Google::Ads::GoogleAds::V4::Enums::ManagerLinkStatusEnum::ManagerLinkStatus.descriptor
1121
+ # @return [Google::Protobuf::EnumDescriptor] for the UserListPrepopulationStatus enum
1122
+ def self.user_list_prepopulation_status
1123
+ require "google/ads/google_ads/v4/enums/user_list_prepopulation_status_pb"
1124
+ Google::Ads::GoogleAds::V4::Enums::UserListPrepopulationStatusEnum::UserListPrepopulationStatus.descriptor
1125
1125
  end
1126
1126
 
1127
- # Returns the descriptor for the SimulationModificationMethod enum
1127
+ # Returns the descriptor for the UserListRuleType enum
1128
1128
  #
1129
- # @return [Google::Protobuf::EnumDescriptor] for the SimulationModificationMethod enum
1130
- def self.simulation_modification_method
1131
- require "google/ads/google_ads/v4/enums/simulation_modification_method_pb"
1132
- Google::Ads::GoogleAds::V4::Enums::SimulationModificationMethodEnum::SimulationModificationMethod.descriptor
1129
+ # @return [Google::Protobuf::EnumDescriptor] for the UserListRuleType enum
1130
+ def self.user_list_rule_type
1131
+ require "google/ads/google_ads/v4/enums/user_list_rule_type_pb"
1132
+ Google::Ads::GoogleAds::V4::Enums::UserListRuleTypeEnum::UserListRuleType.descriptor
1133
1133
  end
1134
1134
 
1135
- # Returns the descriptor for the SimulationType enum
1135
+ # Returns the descriptor for the UserListStringRuleItemOperator enum
1136
1136
  #
1137
- # @return [Google::Protobuf::EnumDescriptor] for the SimulationType enum
1138
- def self.simulation_type
1139
- require "google/ads/google_ads/v4/enums/simulation_type_pb"
1140
- Google::Ads::GoogleAds::V4::Enums::SimulationTypeEnum::SimulationType.descriptor
1137
+ # @return [Google::Protobuf::EnumDescriptor] for the UserListStringRuleItemOperator enum
1138
+ def self.user_list_string_rule_item_operator
1139
+ require "google/ads/google_ads/v4/enums/user_list_string_rule_item_operator_pb"
1140
+ Google::Ads::GoogleAds::V4::Enums::UserListStringRuleItemOperatorEnum::UserListStringRuleItemOperator.descriptor
1141
1141
  end
1142
1142
 
1143
- # Returns the descriptor for the BatchJobStatus enum
1143
+ # Returns the descriptor for the AccessReason enum
1144
1144
  #
1145
- # @return [Google::Protobuf::EnumDescriptor] for the BatchJobStatus enum
1146
- def self.batch_job_status
1147
- require "google/ads/google_ads/v4/enums/batch_job_status_pb"
1148
- Google::Ads::GoogleAds::V4::Enums::BatchJobStatusEnum::BatchJobStatus.descriptor
1145
+ # @return [Google::Protobuf::EnumDescriptor] for the AccessReason enum
1146
+ def self.access_reason
1147
+ require "google/ads/google_ads/v4/enums/access_reason_pb"
1148
+ Google::Ads::GoogleAds::V4::Enums::AccessReasonEnum::AccessReason.descriptor
1149
1149
  end
1150
1150
 
1151
- # Returns the descriptor for the BillingSetupStatus enum
1151
+ # Returns the descriptor for the UserListAccessStatus enum
1152
1152
  #
1153
- # @return [Google::Protobuf::EnumDescriptor] for the BillingSetupStatus enum
1154
- def self.billing_setup_status
1155
- require "google/ads/google_ads/v4/enums/billing_setup_status_pb"
1156
- Google::Ads::GoogleAds::V4::Enums::BillingSetupStatusEnum::BillingSetupStatus.descriptor
1153
+ # @return [Google::Protobuf::EnumDescriptor] for the UserListAccessStatus enum
1154
+ def self.user_list_access_status
1155
+ require "google/ads/google_ads/v4/enums/user_list_access_status_pb"
1156
+ Google::Ads::GoogleAds::V4::Enums::UserListAccessStatusEnum::UserListAccessStatus.descriptor
1157
1157
  end
1158
1158
 
1159
- # Returns the descriptor for the GeoTargetingType enum
1159
+ # Returns the descriptor for the UserListClosingReason enum
1160
1160
  #
1161
- # @return [Google::Protobuf::EnumDescriptor] for the GeoTargetingType enum
1162
- def self.geo_targeting_type
1163
- require "google/ads/google_ads/v4/enums/geo_targeting_type_pb"
1164
- Google::Ads::GoogleAds::V4::Enums::GeoTargetingTypeEnum::GeoTargetingType.descriptor
1161
+ # @return [Google::Protobuf::EnumDescriptor] for the UserListClosingReason enum
1162
+ def self.user_list_closing_reason
1163
+ require "google/ads/google_ads/v4/enums/user_list_closing_reason_pb"
1164
+ Google::Ads::GoogleAds::V4::Enums::UserListClosingReasonEnum::UserListClosingReason.descriptor
1165
1165
  end
1166
1166
 
1167
- # Returns the descriptor for the OperatingSystemVersionOperatorType enum
1167
+ # Returns the descriptor for the UserListMembershipStatus enum
1168
1168
  #
1169
- # @return [Google::Protobuf::EnumDescriptor] for the OperatingSystemVersionOperatorType enum
1170
- def self.operating_system_version_operator_type
1171
- require "google/ads/google_ads/v4/enums/operating_system_version_operator_type_pb"
1172
- Google::Ads::GoogleAds::V4::Enums::OperatingSystemVersionOperatorTypeEnum::OperatingSystemVersionOperatorType.descriptor
1169
+ # @return [Google::Protobuf::EnumDescriptor] for the UserListMembershipStatus enum
1170
+ def self.user_list_membership_status
1171
+ require "google/ads/google_ads/v4/enums/user_list_membership_status_pb"
1172
+ Google::Ads::GoogleAds::V4::Enums::UserListMembershipStatusEnum::UserListMembershipStatus.descriptor
1173
1173
  end
1174
1174
 
1175
- # Returns the descriptor for the MediaType enum
1175
+ # Returns the descriptor for the UserListSizeRange enum
1176
1176
  #
1177
- # @return [Google::Protobuf::EnumDescriptor] for the MediaType enum
1178
- def self.media_type
1179
- require "google/ads/google_ads/v4/enums/media_type_pb"
1180
- Google::Ads::GoogleAds::V4::Enums::MediaTypeEnum::MediaType.descriptor
1177
+ # @return [Google::Protobuf::EnumDescriptor] for the UserListSizeRange enum
1178
+ def self.user_list_size_range
1179
+ require "google/ads/google_ads/v4/enums/user_list_size_range_pb"
1180
+ Google::Ads::GoogleAds::V4::Enums::UserListSizeRangeEnum::UserListSizeRange.descriptor
1181
1181
  end
1182
1182
 
1183
- # Returns the descriptor for the MimeType enum
1183
+ # Returns the descriptor for the UserListType enum
1184
1184
  #
1185
- # @return [Google::Protobuf::EnumDescriptor] for the MimeType enum
1186
- def self.mime_type
1187
- require "google/ads/google_ads/v4/enums/mime_type_pb"
1188
- Google::Ads::GoogleAds::V4::Enums::MimeTypeEnum::MimeType.descriptor
1185
+ # @return [Google::Protobuf::EnumDescriptor] for the UserListType enum
1186
+ def self.user_list_type
1187
+ require "google/ads/google_ads/v4/enums/user_list_type_pb"
1188
+ Google::Ads::GoogleAds::V4::Enums::UserListTypeEnum::UserListType.descriptor
1189
1189
  end
1190
1190
 
1191
- # Returns the descriptor for the AppStore enum
1191
+ # Returns the descriptor for the GeoTargetConstantStatus enum
1192
1192
  #
1193
- # @return [Google::Protobuf::EnumDescriptor] for the AppStore enum
1194
- def self.app_store
1195
- require "google/ads/google_ads/v4/enums/app_store_pb"
1196
- Google::Ads::GoogleAds::V4::Enums::AppStoreEnum::AppStore.descriptor
1193
+ # @return [Google::Protobuf::EnumDescriptor] for the GeoTargetConstantStatus enum
1194
+ def self.geo_target_constant_status
1195
+ require "google/ads/google_ads/v4/enums/geo_target_constant_status_pb"
1196
+ Google::Ads::GoogleAds::V4::Enums::GeoTargetConstantStatusEnum::GeoTargetConstantStatus.descriptor
1197
1197
  end
1198
1198
 
1199
- # Returns the descriptor for the CallConversionReportingState enum
1199
+ # Returns the descriptor for the GoogleAdsFieldCategory enum
1200
1200
  #
1201
- # @return [Google::Protobuf::EnumDescriptor] for the CallConversionReportingState enum
1202
- def self.call_conversion_reporting_state
1203
- require "google/ads/google_ads/v4/enums/call_conversion_reporting_state_pb"
1204
- Google::Ads::GoogleAds::V4::Enums::CallConversionReportingStateEnum::CallConversionReportingState.descriptor
1201
+ # @return [Google::Protobuf::EnumDescriptor] for the GoogleAdsFieldCategory enum
1202
+ def self.google_ads_field_category
1203
+ require "google/ads/google_ads/v4/enums/google_ads_field_category_pb"
1204
+ Google::Ads::GoogleAds::V4::Enums::GoogleAdsFieldCategoryEnum::GoogleAdsFieldCategory.descriptor
1205
1205
  end
1206
1206
 
1207
- # Returns the descriptor for the PriceExtensionPriceQualifier enum
1207
+ # Returns the descriptor for the GoogleAdsFieldDataType enum
1208
1208
  #
1209
- # @return [Google::Protobuf::EnumDescriptor] for the PriceExtensionPriceQualifier enum
1210
- def self.price_extension_price_qualifier
1211
- require "google/ads/google_ads/v4/enums/price_extension_price_qualifier_pb"
1212
- Google::Ads::GoogleAds::V4::Enums::PriceExtensionPriceQualifierEnum::PriceExtensionPriceQualifier.descriptor
1209
+ # @return [Google::Protobuf::EnumDescriptor] for the GoogleAdsFieldDataType enum
1210
+ def self.google_ads_field_data_type
1211
+ require "google/ads/google_ads/v4/enums/google_ads_field_data_type_pb"
1212
+ Google::Ads::GoogleAds::V4::Enums::GoogleAdsFieldDataTypeEnum::GoogleAdsFieldDataType.descriptor
1213
1213
  end
1214
1214
 
1215
- # Returns the descriptor for the PriceExtensionPriceUnit enum
1215
+ # Returns the descriptor for the BudgetDeliveryMethod enum
1216
1216
  #
1217
- # @return [Google::Protobuf::EnumDescriptor] for the PriceExtensionPriceUnit enum
1218
- def self.price_extension_price_unit
1219
- require "google/ads/google_ads/v4/enums/price_extension_price_unit_pb"
1220
- Google::Ads::GoogleAds::V4::Enums::PriceExtensionPriceUnitEnum::PriceExtensionPriceUnit.descriptor
1221
- end
1222
-
1223
- # Returns the descriptor for the PriceExtensionType enum
1224
- #
1225
- # @return [Google::Protobuf::EnumDescriptor] for the PriceExtensionType enum
1226
- def self.price_extension_type
1227
- require "google/ads/google_ads/v4/enums/price_extension_type_pb"
1228
- Google::Ads::GoogleAds::V4::Enums::PriceExtensionTypeEnum::PriceExtensionType.descriptor
1229
- end
1230
-
1231
- # Returns the descriptor for the PromotionExtensionDiscountModifier enum
1232
- #
1233
- # @return [Google::Protobuf::EnumDescriptor] for the PromotionExtensionDiscountModifier enum
1234
- def self.promotion_extension_discount_modifier
1235
- require "google/ads/google_ads/v4/enums/promotion_extension_discount_modifier_pb"
1236
- Google::Ads::GoogleAds::V4::Enums::PromotionExtensionDiscountModifierEnum::PromotionExtensionDiscountModifier.descriptor
1237
- end
1238
-
1239
- # Returns the descriptor for the PromotionExtensionOccasion enum
1240
- #
1241
- # @return [Google::Protobuf::EnumDescriptor] for the PromotionExtensionOccasion enum
1242
- def self.promotion_extension_occasion
1243
- require "google/ads/google_ads/v4/enums/promotion_extension_occasion_pb"
1244
- Google::Ads::GoogleAds::V4::Enums::PromotionExtensionOccasionEnum::PromotionExtensionOccasion.descriptor
1245
- end
1246
-
1247
- # Returns the descriptor for the FeedItemStatus enum
1248
- #
1249
- # @return [Google::Protobuf::EnumDescriptor] for the FeedItemStatus enum
1250
- def self.feed_item_status
1251
- require "google/ads/google_ads/v4/enums/feed_item_status_pb"
1252
- Google::Ads::GoogleAds::V4::Enums::FeedItemStatusEnum::FeedItemStatus.descriptor
1253
- end
1254
-
1255
- # Returns the descriptor for the AdGroupAdRotationMode enum
1256
- #
1257
- # @return [Google::Protobuf::EnumDescriptor] for the AdGroupAdRotationMode enum
1258
- def self.ad_group_ad_rotation_mode
1259
- require "google/ads/google_ads/v4/enums/ad_group_ad_rotation_mode_pb"
1260
- Google::Ads::GoogleAds::V4::Enums::AdGroupAdRotationModeEnum::AdGroupAdRotationMode.descriptor
1261
- end
1262
-
1263
- # Returns the descriptor for the AdGroupStatus enum
1264
- #
1265
- # @return [Google::Protobuf::EnumDescriptor] for the AdGroupStatus enum
1266
- def self.ad_group_status
1267
- require "google/ads/google_ads/v4/enums/ad_group_status_pb"
1268
- Google::Ads::GoogleAds::V4::Enums::AdGroupStatusEnum::AdGroupStatus.descriptor
1269
- end
1270
-
1271
- # Returns the descriptor for the AdGroupType enum
1272
- #
1273
- # @return [Google::Protobuf::EnumDescriptor] for the AdGroupType enum
1274
- def self.ad_group_type
1275
- require "google/ads/google_ads/v4/enums/ad_group_type_pb"
1276
- Google::Ads::GoogleAds::V4::Enums::AdGroupTypeEnum::AdGroupType.descriptor
1277
- end
1278
-
1279
- # Returns the descriptor for the BiddingSource enum
1280
- #
1281
- # @return [Google::Protobuf::EnumDescriptor] for the BiddingSource enum
1282
- def self.bidding_source
1283
- require "google/ads/google_ads/v4/enums/bidding_source_pb"
1284
- Google::Ads::GoogleAds::V4::Enums::BiddingSourceEnum::BiddingSource.descriptor
1285
- end
1286
-
1287
- # Returns the descriptor for the CampaignSharedSetStatus enum
1288
- #
1289
- # @return [Google::Protobuf::EnumDescriptor] for the CampaignSharedSetStatus enum
1290
- def self.campaign_shared_set_status
1291
- require "google/ads/google_ads/v4/enums/campaign_shared_set_status_pb"
1292
- Google::Ads::GoogleAds::V4::Enums::CampaignSharedSetStatusEnum::CampaignSharedSetStatus.descriptor
1293
- end
1294
-
1295
- # Returns the descriptor for the FeedItemQualityApprovalStatus enum
1296
- #
1297
- # @return [Google::Protobuf::EnumDescriptor] for the FeedItemQualityApprovalStatus enum
1298
- def self.feed_item_quality_approval_status
1299
- require "google/ads/google_ads/v4/enums/feed_item_quality_approval_status_pb"
1300
- Google::Ads::GoogleAds::V4::Enums::FeedItemQualityApprovalStatusEnum::FeedItemQualityApprovalStatus.descriptor
1301
- end
1302
-
1303
- # Returns the descriptor for the FeedItemQualityDisapprovalReason enum
1304
- #
1305
- # @return [Google::Protobuf::EnumDescriptor] for the FeedItemQualityDisapprovalReason enum
1306
- def self.feed_item_quality_disapproval_reason
1307
- require "google/ads/google_ads/v4/enums/feed_item_quality_disapproval_reason_pb"
1308
- Google::Ads::GoogleAds::V4::Enums::FeedItemQualityDisapprovalReasonEnum::FeedItemQualityDisapprovalReason.descriptor
1309
- end
1310
-
1311
- # Returns the descriptor for the FeedItemValidationStatus enum
1312
- #
1313
- # @return [Google::Protobuf::EnumDescriptor] for the FeedItemValidationStatus enum
1314
- def self.feed_item_validation_status
1315
- require "google/ads/google_ads/v4/enums/feed_item_validation_status_pb"
1316
- Google::Ads::GoogleAds::V4::Enums::FeedItemValidationStatusEnum::FeedItemValidationStatus.descriptor
1317
- end
1318
-
1319
- # Returns the descriptor for the GeoTargetingRestriction enum
1320
- #
1321
- # @return [Google::Protobuf::EnumDescriptor] for the GeoTargetingRestriction enum
1322
- def self.geo_targeting_restriction
1323
- require "google/ads/google_ads/v4/enums/geo_targeting_restriction_pb"
1324
- Google::Ads::GoogleAds::V4::Enums::GeoTargetingRestrictionEnum::GeoTargetingRestriction.descriptor
1325
- end
1326
-
1327
- # Returns the descriptor for the FeedItemValidationError enum
1328
- #
1329
- # @return [Google::Protobuf::EnumDescriptor] for the FeedItemValidationError enum
1330
- def self.feed_item_validation_error
1331
- require "google/ads/google_ads/v4/errors/feed_item_validation_error_pb"
1332
- Google::Ads::GoogleAds::V4::Errors::FeedItemValidationErrorEnum::FeedItemValidationError.descriptor
1217
+ # @return [Google::Protobuf::EnumDescriptor] for the BudgetDeliveryMethod enum
1218
+ def self.budget_delivery_method
1219
+ require "google/ads/google_ads/v4/enums/budget_delivery_method_pb"
1220
+ Google::Ads::GoogleAds::V4::Enums::BudgetDeliveryMethodEnum::BudgetDeliveryMethod.descriptor
1333
1221
  end
1334
1222
 
1335
- # Returns the descriptor for the AttributionModel enum
1223
+ # Returns the descriptor for the BudgetPeriod enum
1336
1224
  #
1337
- # @return [Google::Protobuf::EnumDescriptor] for the AttributionModel enum
1338
- def self.attribution_model
1339
- require "google/ads/google_ads/v4/enums/attribution_model_pb"
1340
- Google::Ads::GoogleAds::V4::Enums::AttributionModelEnum::AttributionModel.descriptor
1225
+ # @return [Google::Protobuf::EnumDescriptor] for the BudgetPeriod enum
1226
+ def self.budget_period
1227
+ require "google/ads/google_ads/v4/enums/budget_period_pb"
1228
+ Google::Ads::GoogleAds::V4::Enums::BudgetPeriodEnum::BudgetPeriod.descriptor
1341
1229
  end
1342
1230
 
1343
- # Returns the descriptor for the ConversionActionCategory enum
1231
+ # Returns the descriptor for the BudgetStatus enum
1344
1232
  #
1345
- # @return [Google::Protobuf::EnumDescriptor] for the ConversionActionCategory enum
1346
- def self.conversion_action_category
1347
- require "google/ads/google_ads/v4/enums/conversion_action_category_pb"
1348
- Google::Ads::GoogleAds::V4::Enums::ConversionActionCategoryEnum::ConversionActionCategory.descriptor
1233
+ # @return [Google::Protobuf::EnumDescriptor] for the BudgetStatus enum
1234
+ def self.budget_status
1235
+ require "google/ads/google_ads/v4/enums/budget_status_pb"
1236
+ Google::Ads::GoogleAds::V4::Enums::BudgetStatusEnum::BudgetStatus.descriptor
1349
1237
  end
1350
1238
 
1351
- # Returns the descriptor for the ConversionActionCountingType enum
1239
+ # Returns the descriptor for the BudgetType enum
1352
1240
  #
1353
- # @return [Google::Protobuf::EnumDescriptor] for the ConversionActionCountingType enum
1354
- def self.conversion_action_counting_type
1355
- require "google/ads/google_ads/v4/enums/conversion_action_counting_type_pb"
1356
- Google::Ads::GoogleAds::V4::Enums::ConversionActionCountingTypeEnum::ConversionActionCountingType.descriptor
1241
+ # @return [Google::Protobuf::EnumDescriptor] for the BudgetType enum
1242
+ def self.budget_type
1243
+ require "google/ads/google_ads/v4/enums/budget_type_pb"
1244
+ Google::Ads::GoogleAds::V4::Enums::BudgetTypeEnum::BudgetType.descriptor
1357
1245
  end
1358
1246
 
1359
- # Returns the descriptor for the ConversionActionStatus enum
1247
+ # Returns the descriptor for the TrackingCodePageFormat enum
1360
1248
  #
1361
- # @return [Google::Protobuf::EnumDescriptor] for the ConversionActionStatus enum
1362
- def self.conversion_action_status
1363
- require "google/ads/google_ads/v4/enums/conversion_action_status_pb"
1364
- Google::Ads::GoogleAds::V4::Enums::ConversionActionStatusEnum::ConversionActionStatus.descriptor
1249
+ # @return [Google::Protobuf::EnumDescriptor] for the TrackingCodePageFormat enum
1250
+ def self.tracking_code_page_format
1251
+ require "google/ads/google_ads/v4/enums/tracking_code_page_format_pb"
1252
+ Google::Ads::GoogleAds::V4::Enums::TrackingCodePageFormatEnum::TrackingCodePageFormat.descriptor
1365
1253
  end
1366
1254
 
1367
- # Returns the descriptor for the ConversionActionType enum
1255
+ # Returns the descriptor for the TrackingCodeType enum
1368
1256
  #
1369
- # @return [Google::Protobuf::EnumDescriptor] for the ConversionActionType enum
1370
- def self.conversion_action_type
1371
- require "google/ads/google_ads/v4/enums/conversion_action_type_pb"
1372
- Google::Ads::GoogleAds::V4::Enums::ConversionActionTypeEnum::ConversionActionType.descriptor
1257
+ # @return [Google::Protobuf::EnumDescriptor] for the TrackingCodeType enum
1258
+ def self.tracking_code_type
1259
+ require "google/ads/google_ads/v4/enums/tracking_code_type_pb"
1260
+ Google::Ads::GoogleAds::V4::Enums::TrackingCodeTypeEnum::TrackingCodeType.descriptor
1373
1261
  end
1374
1262
 
1375
- # Returns the descriptor for the DataDrivenModelStatus enum
1263
+ # Returns the descriptor for the CampaignDraftStatus enum
1376
1264
  #
1377
- # @return [Google::Protobuf::EnumDescriptor] for the DataDrivenModelStatus enum
1378
- def self.data_driven_model_status
1379
- require "google/ads/google_ads/v4/enums/data_driven_model_status_pb"
1380
- Google::Ads::GoogleAds::V4::Enums::DataDrivenModelStatusEnum::DataDrivenModelStatus.descriptor
1265
+ # @return [Google::Protobuf::EnumDescriptor] for the CampaignDraftStatus enum
1266
+ def self.campaign_draft_status
1267
+ require "google/ads/google_ads/v4/enums/campaign_draft_status_pb"
1268
+ Google::Ads::GoogleAds::V4::Enums::CampaignDraftStatusEnum::CampaignDraftStatus.descriptor
1381
1269
  end
1382
1270
 
1383
- # Returns the descriptor for the MobileAppVendor enum
1271
+ # Returns the descriptor for the MediaType enum
1384
1272
  #
1385
- # @return [Google::Protobuf::EnumDescriptor] for the MobileAppVendor enum
1386
- def self.mobile_app_vendor
1387
- require "google/ads/google_ads/v4/enums/mobile_app_vendor_pb"
1388
- Google::Ads::GoogleAds::V4::Enums::MobileAppVendorEnum::MobileAppVendor.descriptor
1273
+ # @return [Google::Protobuf::EnumDescriptor] for the MediaType enum
1274
+ def self.media_type
1275
+ require "google/ads/google_ads/v4/enums/media_type_pb"
1276
+ Google::Ads::GoogleAds::V4::Enums::MediaTypeEnum::MediaType.descriptor
1389
1277
  end
1390
1278
 
1391
1279
  # Returns the descriptor for the CampaignExperimentStatus enum
@@ -1404,676 +1292,548 @@ module Google
1404
1292
  Google::Ads::GoogleAds::V4::Enums::CampaignExperimentTrafficSplitTypeEnum::CampaignExperimentTrafficSplitType.descriptor
1405
1293
  end
1406
1294
 
1407
- # Returns the descriptor for the KeywordPlanForecastInterval enum
1408
- #
1409
- # @return [Google::Protobuf::EnumDescriptor] for the KeywordPlanForecastInterval enum
1410
- def self.keyword_plan_forecast_interval
1411
- require "google/ads/google_ads/v4/enums/keyword_plan_forecast_interval_pb"
1412
- Google::Ads::GoogleAds::V4::Enums::KeywordPlanForecastIntervalEnum::KeywordPlanForecastInterval.descriptor
1413
- end
1414
-
1415
- # Returns the descriptor for the AdGroupAdStatus enum
1416
- #
1417
- # @return [Google::Protobuf::EnumDescriptor] for the AdGroupAdStatus enum
1418
- def self.ad_group_ad_status
1419
- require "google/ads/google_ads/v4/enums/ad_group_ad_status_pb"
1420
- Google::Ads::GoogleAds::V4::Enums::AdGroupAdStatusEnum::AdGroupAdStatus.descriptor
1421
- end
1422
-
1423
- # Returns the descriptor for the AdStrength enum
1424
- #
1425
- # @return [Google::Protobuf::EnumDescriptor] for the AdStrength enum
1426
- def self.ad_strength
1427
- require "google/ads/google_ads/v4/enums/ad_strength_pb"
1428
- Google::Ads::GoogleAds::V4::Enums::AdStrengthEnum::AdStrength.descriptor
1429
- end
1430
-
1431
- # Returns the descriptor for the ServedAssetFieldType enum
1432
- #
1433
- # @return [Google::Protobuf::EnumDescriptor] for the ServedAssetFieldType enum
1434
- def self.served_asset_field_type
1435
- require "google/ads/google_ads/v4/enums/served_asset_field_type_pb"
1436
- Google::Ads::GoogleAds::V4::Enums::ServedAssetFieldTypeEnum::ServedAssetFieldType.descriptor
1437
- end
1438
-
1439
- # Returns the descriptor for the DisplayAdFormatSetting enum
1440
- #
1441
- # @return [Google::Protobuf::EnumDescriptor] for the DisplayAdFormatSetting enum
1442
- def self.display_ad_format_setting
1443
- require "google/ads/google_ads/v4/enums/display_ad_format_setting_pb"
1444
- Google::Ads::GoogleAds::V4::Enums::DisplayAdFormatSettingEnum::DisplayAdFormatSetting.descriptor
1445
- end
1446
-
1447
- # Returns the descriptor for the DisplayUploadProductType enum
1448
- #
1449
- # @return [Google::Protobuf::EnumDescriptor] for the DisplayUploadProductType enum
1450
- def self.display_upload_product_type
1451
- require "google/ads/google_ads/v4/enums/display_upload_product_type_pb"
1452
- Google::Ads::GoogleAds::V4::Enums::DisplayUploadProductTypeEnum::DisplayUploadProductType.descriptor
1453
- end
1454
-
1455
- # Returns the descriptor for the LegacyAppInstallAdAppStore enum
1456
- #
1457
- # @return [Google::Protobuf::EnumDescriptor] for the LegacyAppInstallAdAppStore enum
1458
- def self.legacy_app_install_ad_app_store
1459
- require "google/ads/google_ads/v4/enums/legacy_app_install_ad_app_store_pb"
1460
- Google::Ads::GoogleAds::V4::Enums::LegacyAppInstallAdAppStoreEnum::LegacyAppInstallAdAppStore.descriptor
1461
- end
1462
-
1463
- # Returns the descriptor for the AppUrlOperatingSystemType enum
1464
- #
1465
- # @return [Google::Protobuf::EnumDescriptor] for the AppUrlOperatingSystemType enum
1466
- def self.app_url_operating_system_type
1467
- require "google/ads/google_ads/v4/enums/app_url_operating_system_type_pb"
1468
- Google::Ads::GoogleAds::V4::Enums::AppUrlOperatingSystemTypeEnum::AppUrlOperatingSystemType.descriptor
1469
- end
1470
-
1471
- # Returns the descriptor for the AdType enum
1472
- #
1473
- # @return [Google::Protobuf::EnumDescriptor] for the AdType enum
1474
- def self.ad_type
1475
- require "google/ads/google_ads/v4/enums/ad_type_pb"
1476
- Google::Ads::GoogleAds::V4::Enums::AdTypeEnum::AdType.descriptor
1477
- end
1478
-
1479
- # Returns the descriptor for the SystemManagedResourceSource enum
1480
- #
1481
- # @return [Google::Protobuf::EnumDescriptor] for the SystemManagedResourceSource enum
1482
- def self.system_managed_resource_source
1483
- require "google/ads/google_ads/v4/enums/system_managed_entity_source_pb"
1484
- Google::Ads::GoogleAds::V4::Enums::SystemManagedResourceSourceEnum::SystemManagedResourceSource.descriptor
1485
- end
1486
-
1487
- # Returns the descriptor for the AffiliateLocationFeedRelationshipType enum
1488
- #
1489
- # @return [Google::Protobuf::EnumDescriptor] for the AffiliateLocationFeedRelationshipType enum
1490
- def self.affiliate_location_feed_relationship_type
1491
- require "google/ads/google_ads/v4/enums/affiliate_location_feed_relationship_type_pb"
1492
- Google::Ads::GoogleAds::V4::Enums::AffiliateLocationFeedRelationshipTypeEnum::AffiliateLocationFeedRelationshipType.descriptor
1493
- end
1494
-
1495
- # Returns the descriptor for the FeedAttributeType enum
1496
- #
1497
- # @return [Google::Protobuf::EnumDescriptor] for the FeedAttributeType enum
1498
- def self.feed_attribute_type
1499
- require "google/ads/google_ads/v4/enums/feed_attribute_type_pb"
1500
- Google::Ads::GoogleAds::V4::Enums::FeedAttributeTypeEnum::FeedAttributeType.descriptor
1501
- end
1502
-
1503
- # Returns the descriptor for the FeedOrigin enum
1504
- #
1505
- # @return [Google::Protobuf::EnumDescriptor] for the FeedOrigin enum
1506
- def self.feed_origin
1507
- require "google/ads/google_ads/v4/enums/feed_origin_pb"
1508
- Google::Ads::GoogleAds::V4::Enums::FeedOriginEnum::FeedOrigin.descriptor
1509
- end
1510
-
1511
- # Returns the descriptor for the FeedStatus enum
1512
- #
1513
- # @return [Google::Protobuf::EnumDescriptor] for the FeedStatus enum
1514
- def self.feed_status
1515
- require "google/ads/google_ads/v4/enums/feed_status_pb"
1516
- Google::Ads::GoogleAds::V4::Enums::FeedStatusEnum::FeedStatus.descriptor
1517
- end
1518
-
1519
- # Returns the descriptor for the Operator enum
1520
- #
1521
- # @return [Google::Protobuf::EnumDescriptor] for the Operator enum
1522
- def self.operator
1523
- require "google/ads/google_ads/v4/resources/feed_pb"
1524
- Google::Ads::GoogleAds::V4::Resources::FeedAttributeOperation::Operator.descriptor
1525
- end
1526
-
1527
- # Returns the descriptor for the AccountBudgetStatus enum
1528
- #
1529
- # @return [Google::Protobuf::EnumDescriptor] for the AccountBudgetStatus enum
1530
- def self.account_budget_status
1531
- require "google/ads/google_ads/v4/enums/account_budget_status_pb"
1532
- Google::Ads::GoogleAds::V4::Enums::AccountBudgetStatusEnum::AccountBudgetStatus.descriptor
1533
- end
1534
-
1535
- # Returns the descriptor for the DistanceBucket enum
1295
+ # Returns the descriptor for the ProductBiddingCategoryStatus enum
1536
1296
  #
1537
- # @return [Google::Protobuf::EnumDescriptor] for the DistanceBucket enum
1538
- def self.distance_bucket
1539
- require "google/ads/google_ads/v4/enums/distance_bucket_pb"
1540
- Google::Ads::GoogleAds::V4::Enums::DistanceBucketEnum::DistanceBucket.descriptor
1297
+ # @return [Google::Protobuf::EnumDescriptor] for the ProductBiddingCategoryStatus enum
1298
+ def self.product_bidding_category_status
1299
+ require "google/ads/google_ads/v4/enums/product_bidding_category_status_pb"
1300
+ Google::Ads::GoogleAds::V4::Enums::ProductBiddingCategoryStatusEnum::ProductBiddingCategoryStatus.descriptor
1541
1301
  end
1542
1302
 
1543
- # Returns the descriptor for the SharedSetStatus enum
1303
+ # Returns the descriptor for the AdCustomizerPlaceholderField enum
1544
1304
  #
1545
- # @return [Google::Protobuf::EnumDescriptor] for the SharedSetStatus enum
1546
- def self.shared_set_status
1547
- require "google/ads/google_ads/v4/enums/shared_set_status_pb"
1548
- Google::Ads::GoogleAds::V4::Enums::SharedSetStatusEnum::SharedSetStatus.descriptor
1305
+ # @return [Google::Protobuf::EnumDescriptor] for the AdCustomizerPlaceholderField enum
1306
+ def self.ad_customizer_placeholder_field
1307
+ require "google/ads/google_ads/v4/enums/ad_customizer_placeholder_field_pb"
1308
+ Google::Ads::GoogleAds::V4::Enums::AdCustomizerPlaceholderFieldEnum::AdCustomizerPlaceholderField.descriptor
1549
1309
  end
1550
1310
 
1551
- # Returns the descriptor for the SharedSetType enum
1311
+ # Returns the descriptor for the AffiliateLocationPlaceholderField enum
1552
1312
  #
1553
- # @return [Google::Protobuf::EnumDescriptor] for the SharedSetType enum
1554
- def self.shared_set_type
1555
- require "google/ads/google_ads/v4/enums/shared_set_type_pb"
1556
- Google::Ads::GoogleAds::V4::Enums::SharedSetTypeEnum::SharedSetType.descriptor
1313
+ # @return [Google::Protobuf::EnumDescriptor] for the AffiliateLocationPlaceholderField enum
1314
+ def self.affiliate_location_placeholder_field
1315
+ require "google/ads/google_ads/v4/enums/affiliate_location_placeholder_field_pb"
1316
+ Google::Ads::GoogleAds::V4::Enums::AffiliateLocationPlaceholderFieldEnum::AffiliateLocationPlaceholderField.descriptor
1557
1317
  end
1558
1318
 
1559
- # Returns the descriptor for the AdGroupCriterionApprovalStatus enum
1319
+ # Returns the descriptor for the AppPlaceholderField enum
1560
1320
  #
1561
- # @return [Google::Protobuf::EnumDescriptor] for the AdGroupCriterionApprovalStatus enum
1562
- def self.ad_group_criterion_approval_status
1563
- require "google/ads/google_ads/v4/enums/ad_group_criterion_approval_status_pb"
1564
- Google::Ads::GoogleAds::V4::Enums::AdGroupCriterionApprovalStatusEnum::AdGroupCriterionApprovalStatus.descriptor
1321
+ # @return [Google::Protobuf::EnumDescriptor] for the AppPlaceholderField enum
1322
+ def self.app_placeholder_field
1323
+ require "google/ads/google_ads/v4/enums/app_placeholder_field_pb"
1324
+ Google::Ads::GoogleAds::V4::Enums::AppPlaceholderFieldEnum::AppPlaceholderField.descriptor
1565
1325
  end
1566
1326
 
1567
- # Returns the descriptor for the AdGroupCriterionStatus enum
1327
+ # Returns the descriptor for the CallPlaceholderField enum
1568
1328
  #
1569
- # @return [Google::Protobuf::EnumDescriptor] for the AdGroupCriterionStatus enum
1570
- def self.ad_group_criterion_status
1571
- require "google/ads/google_ads/v4/enums/ad_group_criterion_status_pb"
1572
- Google::Ads::GoogleAds::V4::Enums::AdGroupCriterionStatusEnum::AdGroupCriterionStatus.descriptor
1329
+ # @return [Google::Protobuf::EnumDescriptor] for the CallPlaceholderField enum
1330
+ def self.call_placeholder_field
1331
+ require "google/ads/google_ads/v4/enums/call_placeholder_field_pb"
1332
+ Google::Ads::GoogleAds::V4::Enums::CallPlaceholderFieldEnum::CallPlaceholderField.descriptor
1573
1333
  end
1574
1334
 
1575
- # Returns the descriptor for the CriterionSystemServingStatus enum
1335
+ # Returns the descriptor for the CalloutPlaceholderField enum
1576
1336
  #
1577
- # @return [Google::Protobuf::EnumDescriptor] for the CriterionSystemServingStatus enum
1578
- def self.criterion_system_serving_status
1579
- require "google/ads/google_ads/v4/enums/criterion_system_serving_status_pb"
1580
- Google::Ads::GoogleAds::V4::Enums::CriterionSystemServingStatusEnum::CriterionSystemServingStatus.descriptor
1337
+ # @return [Google::Protobuf::EnumDescriptor] for the CalloutPlaceholderField enum
1338
+ def self.callout_placeholder_field
1339
+ require "google/ads/google_ads/v4/enums/callout_placeholder_field_pb"
1340
+ Google::Ads::GoogleAds::V4::Enums::CalloutPlaceholderFieldEnum::CalloutPlaceholderField.descriptor
1581
1341
  end
1582
1342
 
1583
- # Returns the descriptor for the QualityScoreBucket enum
1343
+ # Returns the descriptor for the CustomPlaceholderField enum
1584
1344
  #
1585
- # @return [Google::Protobuf::EnumDescriptor] for the QualityScoreBucket enum
1586
- def self.quality_score_bucket
1587
- require "google/ads/google_ads/v4/enums/quality_score_bucket_pb"
1588
- Google::Ads::GoogleAds::V4::Enums::QualityScoreBucketEnum::QualityScoreBucket.descriptor
1345
+ # @return [Google::Protobuf::EnumDescriptor] for the CustomPlaceholderField enum
1346
+ def self.custom_placeholder_field
1347
+ require "google/ads/google_ads/v4/enums/custom_placeholder_field_pb"
1348
+ Google::Ads::GoogleAds::V4::Enums::CustomPlaceholderFieldEnum::CustomPlaceholderField.descriptor
1589
1349
  end
1590
1350
 
1591
- # Returns the descriptor for the AccountLinkStatus enum
1351
+ # Returns the descriptor for the DsaPageFeedCriterionField enum
1592
1352
  #
1593
- # @return [Google::Protobuf::EnumDescriptor] for the AccountLinkStatus enum
1594
- def self.account_link_status
1595
- require "google/ads/google_ads/v4/enums/account_link_status_pb"
1596
- Google::Ads::GoogleAds::V4::Enums::AccountLinkStatusEnum::AccountLinkStatus.descriptor
1353
+ # @return [Google::Protobuf::EnumDescriptor] for the DsaPageFeedCriterionField enum
1354
+ def self.dsa_page_feed_criterion_field
1355
+ require "google/ads/google_ads/v4/enums/dsa_page_feed_criterion_field_pb"
1356
+ Google::Ads::GoogleAds::V4::Enums::DsaPageFeedCriterionFieldEnum::DsaPageFeedCriterionField.descriptor
1597
1357
  end
1598
1358
 
1599
- # Returns the descriptor for the LinkedAccountType enum
1359
+ # Returns the descriptor for the EducationPlaceholderField enum
1600
1360
  #
1601
- # @return [Google::Protobuf::EnumDescriptor] for the LinkedAccountType enum
1602
- def self.linked_account_type
1603
- require "google/ads/google_ads/v4/enums/linked_account_type_pb"
1604
- Google::Ads::GoogleAds::V4::Enums::LinkedAccountTypeEnum::LinkedAccountType.descriptor
1361
+ # @return [Google::Protobuf::EnumDescriptor] for the EducationPlaceholderField enum
1362
+ def self.education_placeholder_field
1363
+ require "google/ads/google_ads/v4/enums/education_placeholder_field_pb"
1364
+ Google::Ads::GoogleAds::V4::Enums::EducationPlaceholderFieldEnum::EducationPlaceholderField.descriptor
1605
1365
  end
1606
1366
 
1607
- # Returns the descriptor for the AssetType enum
1367
+ # Returns the descriptor for the FeedMappingCriterionType enum
1608
1368
  #
1609
- # @return [Google::Protobuf::EnumDescriptor] for the AssetType enum
1610
- def self.asset_type
1611
- require "google/ads/google_ads/v4/enums/asset_type_pb"
1612
- Google::Ads::GoogleAds::V4::Enums::AssetTypeEnum::AssetType.descriptor
1369
+ # @return [Google::Protobuf::EnumDescriptor] for the FeedMappingCriterionType enum
1370
+ def self.feed_mapping_criterion_type
1371
+ require "google/ads/google_ads/v4/enums/feed_mapping_criterion_type_pb"
1372
+ Google::Ads::GoogleAds::V4::Enums::FeedMappingCriterionTypeEnum::FeedMappingCriterionType.descriptor
1613
1373
  end
1614
1374
 
1615
- # Returns the descriptor for the MerchantCenterLinkStatus enum
1375
+ # Returns the descriptor for the FeedMappingStatus enum
1616
1376
  #
1617
- # @return [Google::Protobuf::EnumDescriptor] for the MerchantCenterLinkStatus enum
1618
- def self.merchant_center_link_status
1619
- require "google/ads/google_ads/v4/enums/merchant_center_link_status_pb"
1620
- Google::Ads::GoogleAds::V4::Enums::MerchantCenterLinkStatusEnum::MerchantCenterLinkStatus.descriptor
1377
+ # @return [Google::Protobuf::EnumDescriptor] for the FeedMappingStatus enum
1378
+ def self.feed_mapping_status
1379
+ require "google/ads/google_ads/v4/enums/feed_mapping_status_pb"
1380
+ Google::Ads::GoogleAds::V4::Enums::FeedMappingStatusEnum::FeedMappingStatus.descriptor
1621
1381
  end
1622
1382
 
1623
- # Returns the descriptor for the RecommendationType enum
1383
+ # Returns the descriptor for the FlightPlaceholderField enum
1624
1384
  #
1625
- # @return [Google::Protobuf::EnumDescriptor] for the RecommendationType enum
1626
- def self.recommendation_type
1627
- require "google/ads/google_ads/v4/enums/recommendation_type_pb"
1628
- Google::Ads::GoogleAds::V4::Enums::RecommendationTypeEnum::RecommendationType.descriptor
1385
+ # @return [Google::Protobuf::EnumDescriptor] for the FlightPlaceholderField enum
1386
+ def self.flight_placeholder_field
1387
+ require "google/ads/google_ads/v4/enums/flight_placeholder_field_pb"
1388
+ Google::Ads::GoogleAds::V4::Enums::FlightPlaceholderFieldEnum::FlightPlaceholderField.descriptor
1629
1389
  end
1630
1390
 
1631
- # Returns the descriptor for the TargetCpaOptInRecommendationGoal enum
1391
+ # Returns the descriptor for the HotelPlaceholderField enum
1632
1392
  #
1633
- # @return [Google::Protobuf::EnumDescriptor] for the TargetCpaOptInRecommendationGoal enum
1634
- def self.target_cpa_opt_in_recommendation_goal
1635
- require "google/ads/google_ads/v4/enums/target_cpa_opt_in_recommendation_goal_pb"
1636
- Google::Ads::GoogleAds::V4::Enums::TargetCpaOptInRecommendationGoalEnum::TargetCpaOptInRecommendationGoal.descriptor
1393
+ # @return [Google::Protobuf::EnumDescriptor] for the HotelPlaceholderField enum
1394
+ def self.hotel_placeholder_field
1395
+ require "google/ads/google_ads/v4/enums/hotel_placeholder_field_pb"
1396
+ Google::Ads::GoogleAds::V4::Enums::HotelPlaceholderFieldEnum::HotelPlaceholderField.descriptor
1637
1397
  end
1638
1398
 
1639
- # Returns the descriptor for the AccessRole enum
1399
+ # Returns the descriptor for the JobPlaceholderField enum
1640
1400
  #
1641
- # @return [Google::Protobuf::EnumDescriptor] for the AccessRole enum
1642
- def self.access_role
1643
- require "google/ads/google_ads/v4/enums/access_role_pb"
1644
- Google::Ads::GoogleAds::V4::Enums::AccessRoleEnum::AccessRole.descriptor
1401
+ # @return [Google::Protobuf::EnumDescriptor] for the JobPlaceholderField enum
1402
+ def self.job_placeholder_field
1403
+ require "google/ads/google_ads/v4/enums/job_placeholder_field_pb"
1404
+ Google::Ads::GoogleAds::V4::Enums::JobPlaceholderFieldEnum::JobPlaceholderField.descriptor
1645
1405
  end
1646
1406
 
1647
- # Returns the descriptor for the InteractionEventType enum
1407
+ # Returns the descriptor for the LocalPlaceholderField enum
1648
1408
  #
1649
- # @return [Google::Protobuf::EnumDescriptor] for the InteractionEventType enum
1650
- def self.interaction_event_type
1651
- require "google/ads/google_ads/v4/enums/interaction_event_type_pb"
1652
- Google::Ads::GoogleAds::V4::Enums::InteractionEventTypeEnum::InteractionEventType.descriptor
1409
+ # @return [Google::Protobuf::EnumDescriptor] for the LocalPlaceholderField enum
1410
+ def self.local_placeholder_field
1411
+ require "google/ads/google_ads/v4/enums/local_placeholder_field_pb"
1412
+ Google::Ads::GoogleAds::V4::Enums::LocalPlaceholderFieldEnum::LocalPlaceholderField.descriptor
1653
1413
  end
1654
1414
 
1655
- # Returns the descriptor for the AdNetworkType enum
1415
+ # Returns the descriptor for the LocationExtensionTargetingCriterionField enum
1656
1416
  #
1657
- # @return [Google::Protobuf::EnumDescriptor] for the AdNetworkType enum
1658
- def self.ad_network_type
1659
- require "google/ads/google_ads/v4/enums/ad_network_type_pb"
1660
- Google::Ads::GoogleAds::V4::Enums::AdNetworkTypeEnum::AdNetworkType.descriptor
1417
+ # @return [Google::Protobuf::EnumDescriptor] for the LocationExtensionTargetingCriterionField enum
1418
+ def self.location_extension_targeting_criterion_field
1419
+ require "google/ads/google_ads/v4/enums/location_extension_targeting_criterion_field_pb"
1420
+ Google::Ads::GoogleAds::V4::Enums::LocationExtensionTargetingCriterionFieldEnum::LocationExtensionTargetingCriterionField.descriptor
1661
1421
  end
1662
1422
 
1663
- # Returns the descriptor for the ClickType enum
1423
+ # Returns the descriptor for the LocationPlaceholderField enum
1664
1424
  #
1665
- # @return [Google::Protobuf::EnumDescriptor] for the ClickType enum
1666
- def self.click_type
1667
- require "google/ads/google_ads/v4/enums/click_type_pb"
1668
- Google::Ads::GoogleAds::V4::Enums::ClickTypeEnum::ClickType.descriptor
1425
+ # @return [Google::Protobuf::EnumDescriptor] for the LocationPlaceholderField enum
1426
+ def self.location_placeholder_field
1427
+ require "google/ads/google_ads/v4/enums/location_placeholder_field_pb"
1428
+ Google::Ads::GoogleAds::V4::Enums::LocationPlaceholderFieldEnum::LocationPlaceholderField.descriptor
1669
1429
  end
1670
1430
 
1671
- # Returns the descriptor for the ConversionAttributionEventType enum
1431
+ # Returns the descriptor for the MessagePlaceholderField enum
1672
1432
  #
1673
- # @return [Google::Protobuf::EnumDescriptor] for the ConversionAttributionEventType enum
1674
- def self.conversion_attribution_event_type
1675
- require "google/ads/google_ads/v4/enums/conversion_attribution_event_type_pb"
1676
- Google::Ads::GoogleAds::V4::Enums::ConversionAttributionEventTypeEnum::ConversionAttributionEventType.descriptor
1433
+ # @return [Google::Protobuf::EnumDescriptor] for the MessagePlaceholderField enum
1434
+ def self.message_placeholder_field
1435
+ require "google/ads/google_ads/v4/enums/message_placeholder_field_pb"
1436
+ Google::Ads::GoogleAds::V4::Enums::MessagePlaceholderFieldEnum::MessagePlaceholderField.descriptor
1677
1437
  end
1678
1438
 
1679
- # Returns the descriptor for the ConversionLagBucket enum
1439
+ # Returns the descriptor for the PricePlaceholderField enum
1680
1440
  #
1681
- # @return [Google::Protobuf::EnumDescriptor] for the ConversionLagBucket enum
1682
- def self.conversion_lag_bucket
1683
- require "google/ads/google_ads/v4/enums/conversion_lag_bucket_pb"
1684
- Google::Ads::GoogleAds::V4::Enums::ConversionLagBucketEnum::ConversionLagBucket.descriptor
1441
+ # @return [Google::Protobuf::EnumDescriptor] for the PricePlaceholderField enum
1442
+ def self.price_placeholder_field
1443
+ require "google/ads/google_ads/v4/enums/price_placeholder_field_pb"
1444
+ Google::Ads::GoogleAds::V4::Enums::PricePlaceholderFieldEnum::PricePlaceholderField.descriptor
1685
1445
  end
1686
1446
 
1687
- # Returns the descriptor for the ConversionOrAdjustmentLagBucket enum
1447
+ # Returns the descriptor for the PromotionPlaceholderField enum
1688
1448
  #
1689
- # @return [Google::Protobuf::EnumDescriptor] for the ConversionOrAdjustmentLagBucket enum
1690
- def self.conversion_or_adjustment_lag_bucket
1691
- require "google/ads/google_ads/v4/enums/conversion_or_adjustment_lag_bucket_pb"
1692
- Google::Ads::GoogleAds::V4::Enums::ConversionOrAdjustmentLagBucketEnum::ConversionOrAdjustmentLagBucket.descriptor
1449
+ # @return [Google::Protobuf::EnumDescriptor] for the PromotionPlaceholderField enum
1450
+ def self.promotion_placeholder_field
1451
+ require "google/ads/google_ads/v4/enums/promotion_placeholder_field_pb"
1452
+ Google::Ads::GoogleAds::V4::Enums::PromotionPlaceholderFieldEnum::PromotionPlaceholderField.descriptor
1693
1453
  end
1694
1454
 
1695
- # Returns the descriptor for the ExternalConversionSource enum
1455
+ # Returns the descriptor for the RealEstatePlaceholderField enum
1696
1456
  #
1697
- # @return [Google::Protobuf::EnumDescriptor] for the ExternalConversionSource enum
1698
- def self.external_conversion_source
1699
- require "google/ads/google_ads/v4/enums/external_conversion_source_pb"
1700
- Google::Ads::GoogleAds::V4::Enums::ExternalConversionSourceEnum::ExternalConversionSource.descriptor
1457
+ # @return [Google::Protobuf::EnumDescriptor] for the RealEstatePlaceholderField enum
1458
+ def self.real_estate_placeholder_field
1459
+ require "google/ads/google_ads/v4/enums/real_estate_placeholder_field_pb"
1460
+ Google::Ads::GoogleAds::V4::Enums::RealEstatePlaceholderFieldEnum::RealEstatePlaceholderField.descriptor
1701
1461
  end
1702
1462
 
1703
- # Returns the descriptor for the HotelPriceBucket enum
1463
+ # Returns the descriptor for the SitelinkPlaceholderField enum
1704
1464
  #
1705
- # @return [Google::Protobuf::EnumDescriptor] for the HotelPriceBucket enum
1706
- def self.hotel_price_bucket
1707
- require "google/ads/google_ads/v4/enums/hotel_price_bucket_pb"
1708
- Google::Ads::GoogleAds::V4::Enums::HotelPriceBucketEnum::HotelPriceBucket.descriptor
1465
+ # @return [Google::Protobuf::EnumDescriptor] for the SitelinkPlaceholderField enum
1466
+ def self.sitelink_placeholder_field
1467
+ require "google/ads/google_ads/v4/enums/sitelink_placeholder_field_pb"
1468
+ Google::Ads::GoogleAds::V4::Enums::SitelinkPlaceholderFieldEnum::SitelinkPlaceholderField.descriptor
1709
1469
  end
1710
1470
 
1711
- # Returns the descriptor for the HotelRateType enum
1471
+ # Returns the descriptor for the StructuredSnippetPlaceholderField enum
1712
1472
  #
1713
- # @return [Google::Protobuf::EnumDescriptor] for the HotelRateType enum
1714
- def self.hotel_rate_type
1715
- require "google/ads/google_ads/v4/enums/hotel_rate_type_pb"
1716
- Google::Ads::GoogleAds::V4::Enums::HotelRateTypeEnum::HotelRateType.descriptor
1473
+ # @return [Google::Protobuf::EnumDescriptor] for the StructuredSnippetPlaceholderField enum
1474
+ def self.structured_snippet_placeholder_field
1475
+ require "google/ads/google_ads/v4/enums/structured_snippet_placeholder_field_pb"
1476
+ Google::Ads::GoogleAds::V4::Enums::StructuredSnippetPlaceholderFieldEnum::StructuredSnippetPlaceholderField.descriptor
1717
1477
  end
1718
1478
 
1719
- # Returns the descriptor for the MonthOfYear enum
1479
+ # Returns the descriptor for the TravelPlaceholderField enum
1720
1480
  #
1721
- # @return [Google::Protobuf::EnumDescriptor] for the MonthOfYear enum
1722
- def self.month_of_year
1723
- require "google/ads/google_ads/v4/enums/month_of_year_pb"
1724
- Google::Ads::GoogleAds::V4::Enums::MonthOfYearEnum::MonthOfYear.descriptor
1481
+ # @return [Google::Protobuf::EnumDescriptor] for the TravelPlaceholderField enum
1482
+ def self.travel_placeholder_field
1483
+ require "google/ads/google_ads/v4/enums/travel_placeholder_field_pb"
1484
+ Google::Ads::GoogleAds::V4::Enums::TravelPlaceholderFieldEnum::TravelPlaceholderField.descriptor
1725
1485
  end
1726
1486
 
1727
- # Returns the descriptor for the SearchEngineResultsPageType enum
1487
+ # Returns the descriptor for the DistanceBucket enum
1728
1488
  #
1729
- # @return [Google::Protobuf::EnumDescriptor] for the SearchEngineResultsPageType enum
1730
- def self.search_engine_results_page_type
1731
- require "google/ads/google_ads/v4/enums/search_engine_results_page_type_pb"
1732
- Google::Ads::GoogleAds::V4::Enums::SearchEngineResultsPageTypeEnum::SearchEngineResultsPageType.descriptor
1489
+ # @return [Google::Protobuf::EnumDescriptor] for the DistanceBucket enum
1490
+ def self.distance_bucket
1491
+ require "google/ads/google_ads/v4/enums/distance_bucket_pb"
1492
+ Google::Ads::GoogleAds::V4::Enums::DistanceBucketEnum::DistanceBucket.descriptor
1733
1493
  end
1734
1494
 
1735
- # Returns the descriptor for the SearchTermMatchType enum
1495
+ # Returns the descriptor for the ChangeStatusOperation enum
1736
1496
  #
1737
- # @return [Google::Protobuf::EnumDescriptor] for the SearchTermMatchType enum
1738
- def self.search_term_match_type
1739
- require "google/ads/google_ads/v4/enums/search_term_match_type_pb"
1740
- Google::Ads::GoogleAds::V4::Enums::SearchTermMatchTypeEnum::SearchTermMatchType.descriptor
1497
+ # @return [Google::Protobuf::EnumDescriptor] for the ChangeStatusOperation enum
1498
+ def self.change_status_operation
1499
+ require "google/ads/google_ads/v4/enums/change_status_operation_pb"
1500
+ Google::Ads::GoogleAds::V4::Enums::ChangeStatusOperationEnum::ChangeStatusOperation.descriptor
1741
1501
  end
1742
1502
 
1743
- # Returns the descriptor for the Slot enum
1503
+ # Returns the descriptor for the ChangeStatusResourceType enum
1744
1504
  #
1745
- # @return [Google::Protobuf::EnumDescriptor] for the Slot enum
1746
- def self.slot
1747
- require "google/ads/google_ads/v4/enums/slot_pb"
1748
- Google::Ads::GoogleAds::V4::Enums::SlotEnum::Slot.descriptor
1505
+ # @return [Google::Protobuf::EnumDescriptor] for the ChangeStatusResourceType enum
1506
+ def self.change_status_resource_type
1507
+ require "google/ads/google_ads/v4/enums/change_status_resource_type_pb"
1508
+ Google::Ads::GoogleAds::V4::Enums::ChangeStatusResourceTypeEnum::ChangeStatusResourceType.descriptor
1749
1509
  end
1750
1510
 
1751
- # Returns the descriptor for the SummaryRowSetting enum
1511
+ # Returns the descriptor for the AdGroupAdStatus enum
1752
1512
  #
1753
- # @return [Google::Protobuf::EnumDescriptor] for the SummaryRowSetting enum
1754
- def self.summary_row_setting
1755
- require "google/ads/google_ads/v4/enums/summary_row_setting_pb"
1756
- Google::Ads::GoogleAds::V4::Enums::SummaryRowSettingEnum::SummaryRowSetting.descriptor
1513
+ # @return [Google::Protobuf::EnumDescriptor] for the AdGroupAdStatus enum
1514
+ def self.ad_group_ad_status
1515
+ require "google/ads/google_ads/v4/enums/ad_group_ad_status_pb"
1516
+ Google::Ads::GoogleAds::V4::Enums::AdGroupAdStatusEnum::AdGroupAdStatus.descriptor
1757
1517
  end
1758
1518
 
1759
- # Returns the descriptor for the KeywordPlanCompetitionLevel enum
1519
+ # Returns the descriptor for the AdStrength enum
1760
1520
  #
1761
- # @return [Google::Protobuf::EnumDescriptor] for the KeywordPlanCompetitionLevel enum
1762
- def self.keyword_plan_competition_level
1763
- require "google/ads/google_ads/v4/enums/keyword_plan_competition_level_pb"
1764
- Google::Ads::GoogleAds::V4::Enums::KeywordPlanCompetitionLevelEnum::KeywordPlanCompetitionLevel.descriptor
1521
+ # @return [Google::Protobuf::EnumDescriptor] for the AdStrength enum
1522
+ def self.ad_strength
1523
+ require "google/ads/google_ads/v4/enums/ad_strength_pb"
1524
+ Google::Ads::GoogleAds::V4::Enums::AdStrengthEnum::AdStrength.descriptor
1765
1525
  end
1766
1526
 
1767
- # Returns the descriptor for the ConversionAdjustmentType enum
1527
+ # Returns the descriptor for the CustomInterestMemberType enum
1768
1528
  #
1769
- # @return [Google::Protobuf::EnumDescriptor] for the ConversionAdjustmentType enum
1770
- def self.conversion_adjustment_type
1771
- require "google/ads/google_ads/v4/enums/conversion_adjustment_type_pb"
1772
- Google::Ads::GoogleAds::V4::Enums::ConversionAdjustmentTypeEnum::ConversionAdjustmentType.descriptor
1529
+ # @return [Google::Protobuf::EnumDescriptor] for the CustomInterestMemberType enum
1530
+ def self.custom_interest_member_type
1531
+ require "google/ads/google_ads/v4/enums/custom_interest_member_type_pb"
1532
+ Google::Ads::GoogleAds::V4::Enums::CustomInterestMemberTypeEnum::CustomInterestMemberType.descriptor
1773
1533
  end
1774
1534
 
1775
- # Returns the descriptor for the ReachPlanAdLength enum
1535
+ # Returns the descriptor for the CustomInterestStatus enum
1776
1536
  #
1777
- # @return [Google::Protobuf::EnumDescriptor] for the ReachPlanAdLength enum
1778
- def self.reach_plan_ad_length
1779
- require "google/ads/google_ads/v4/enums/reach_plan_ad_length_pb"
1780
- Google::Ads::GoogleAds::V4::Enums::ReachPlanAdLengthEnum::ReachPlanAdLength.descriptor
1537
+ # @return [Google::Protobuf::EnumDescriptor] for the CustomInterestStatus enum
1538
+ def self.custom_interest_status
1539
+ require "google/ads/google_ads/v4/enums/custom_interest_status_pb"
1540
+ Google::Ads::GoogleAds::V4::Enums::CustomInterestStatusEnum::CustomInterestStatus.descriptor
1781
1541
  end
1782
1542
 
1783
- # Returns the descriptor for the ReachPlanAgeRange enum
1543
+ # Returns the descriptor for the CustomInterestType enum
1784
1544
  #
1785
- # @return [Google::Protobuf::EnumDescriptor] for the ReachPlanAgeRange enum
1786
- def self.reach_plan_age_range
1787
- require "google/ads/google_ads/v4/enums/reach_plan_age_range_pb"
1788
- Google::Ads::GoogleAds::V4::Enums::ReachPlanAgeRangeEnum::ReachPlanAgeRange.descriptor
1545
+ # @return [Google::Protobuf::EnumDescriptor] for the CustomInterestType enum
1546
+ def self.custom_interest_type
1547
+ require "google/ads/google_ads/v4/enums/custom_interest_type_pb"
1548
+ Google::Ads::GoogleAds::V4::Enums::CustomInterestTypeEnum::CustomInterestType.descriptor
1789
1549
  end
1790
1550
 
1791
- # Returns the descriptor for the ReachPlanNetwork enum
1551
+ # Returns the descriptor for the CampaignCriterionStatus enum
1792
1552
  #
1793
- # @return [Google::Protobuf::EnumDescriptor] for the ReachPlanNetwork enum
1794
- def self.reach_plan_network
1795
- require "google/ads/google_ads/v4/enums/reach_plan_network_pb"
1796
- Google::Ads::GoogleAds::V4::Enums::ReachPlanNetworkEnum::ReachPlanNetwork.descriptor
1553
+ # @return [Google::Protobuf::EnumDescriptor] for the CampaignCriterionStatus enum
1554
+ def self.campaign_criterion_status
1555
+ require "google/ads/google_ads/v4/enums/campaign_criterion_status_pb"
1556
+ Google::Ads::GoogleAds::V4::Enums::CampaignCriterionStatusEnum::CampaignCriterionStatus.descriptor
1797
1557
  end
1798
1558
 
1799
- # Returns the descriptor for the HeaderError enum
1559
+ # Returns the descriptor for the GeoTargetingType enum
1800
1560
  #
1801
- # @return [Google::Protobuf::EnumDescriptor] for the HeaderError enum
1802
- def self.header_error
1803
- require "google/ads/google_ads/v4/errors/header_error_pb"
1804
- Google::Ads::GoogleAds::V4::Errors::HeaderErrorEnum::HeaderError.descriptor
1561
+ # @return [Google::Protobuf::EnumDescriptor] for the GeoTargetingType enum
1562
+ def self.geo_targeting_type
1563
+ require "google/ads/google_ads/v4/enums/geo_targeting_type_pb"
1564
+ Google::Ads::GoogleAds::V4::Enums::GeoTargetingTypeEnum::GeoTargetingType.descriptor
1805
1565
  end
1806
1566
 
1807
- # Returns the descriptor for the OfflineUserDataJobError enum
1567
+ # Returns the descriptor for the AdGroupAdRotationMode enum
1808
1568
  #
1809
- # @return [Google::Protobuf::EnumDescriptor] for the OfflineUserDataJobError enum
1810
- def self.offline_user_data_job_error
1811
- require "google/ads/google_ads/v4/errors/offline_user_data_job_error_pb"
1812
- Google::Ads::GoogleAds::V4::Errors::OfflineUserDataJobErrorEnum::OfflineUserDataJobError.descriptor
1569
+ # @return [Google::Protobuf::EnumDescriptor] for the AdGroupAdRotationMode enum
1570
+ def self.ad_group_ad_rotation_mode
1571
+ require "google/ads/google_ads/v4/enums/ad_group_ad_rotation_mode_pb"
1572
+ Google::Ads::GoogleAds::V4::Enums::AdGroupAdRotationModeEnum::AdGroupAdRotationMode.descriptor
1813
1573
  end
1814
1574
 
1815
- # Returns the descriptor for the CurrencyCodeError enum
1575
+ # Returns the descriptor for the AdGroupStatus enum
1816
1576
  #
1817
- # @return [Google::Protobuf::EnumDescriptor] for the CurrencyCodeError enum
1818
- def self.currency_code_error
1819
- require "google/ads/google_ads/v4/errors/currency_code_error_pb"
1820
- Google::Ads::GoogleAds::V4::Errors::CurrencyCodeErrorEnum::CurrencyCodeError.descriptor
1577
+ # @return [Google::Protobuf::EnumDescriptor] for the AdGroupStatus enum
1578
+ def self.ad_group_status
1579
+ require "google/ads/google_ads/v4/enums/ad_group_status_pb"
1580
+ Google::Ads::GoogleAds::V4::Enums::AdGroupStatusEnum::AdGroupStatus.descriptor
1821
1581
  end
1822
1582
 
1823
- # Returns the descriptor for the AdGroupAdError enum
1583
+ # Returns the descriptor for the AdGroupType enum
1824
1584
  #
1825
- # @return [Google::Protobuf::EnumDescriptor] for the AdGroupAdError enum
1826
- def self.ad_group_ad_error
1827
- require "google/ads/google_ads/v4/errors/ad_group_ad_error_pb"
1828
- Google::Ads::GoogleAds::V4::Errors::AdGroupAdErrorEnum::AdGroupAdError.descriptor
1585
+ # @return [Google::Protobuf::EnumDescriptor] for the AdGroupType enum
1586
+ def self.ad_group_type
1587
+ require "google/ads/google_ads/v4/enums/ad_group_type_pb"
1588
+ Google::Ads::GoogleAds::V4::Enums::AdGroupTypeEnum::AdGroupType.descriptor
1829
1589
  end
1830
1590
 
1831
- # Returns the descriptor for the CustomerFeedError enum
1591
+ # Returns the descriptor for the AttributionModel enum
1832
1592
  #
1833
- # @return [Google::Protobuf::EnumDescriptor] for the CustomerFeedError enum
1834
- def self.customer_feed_error
1835
- require "google/ads/google_ads/v4/errors/customer_feed_error_pb"
1836
- Google::Ads::GoogleAds::V4::Errors::CustomerFeedErrorEnum::CustomerFeedError.descriptor
1593
+ # @return [Google::Protobuf::EnumDescriptor] for the AttributionModel enum
1594
+ def self.attribution_model
1595
+ require "google/ads/google_ads/v4/enums/attribution_model_pb"
1596
+ Google::Ads::GoogleAds::V4::Enums::AttributionModelEnum::AttributionModel.descriptor
1837
1597
  end
1838
1598
 
1839
- # Returns the descriptor for the KeywordPlanIdeaError enum
1599
+ # Returns the descriptor for the ConversionActionCategory enum
1840
1600
  #
1841
- # @return [Google::Protobuf::EnumDescriptor] for the KeywordPlanIdeaError enum
1842
- def self.keyword_plan_idea_error
1843
- require "google/ads/google_ads/v4/errors/keyword_plan_idea_error_pb"
1844
- Google::Ads::GoogleAds::V4::Errors::KeywordPlanIdeaErrorEnum::KeywordPlanIdeaError.descriptor
1601
+ # @return [Google::Protobuf::EnumDescriptor] for the ConversionActionCategory enum
1602
+ def self.conversion_action_category
1603
+ require "google/ads/google_ads/v4/enums/conversion_action_category_pb"
1604
+ Google::Ads::GoogleAds::V4::Enums::ConversionActionCategoryEnum::ConversionActionCategory.descriptor
1845
1605
  end
1846
1606
 
1847
- # Returns the descriptor for the TimeZoneError enum
1607
+ # Returns the descriptor for the ConversionActionCountingType enum
1848
1608
  #
1849
- # @return [Google::Protobuf::EnumDescriptor] for the TimeZoneError enum
1850
- def self.time_zone_error
1851
- require "google/ads/google_ads/v4/errors/time_zone_error_pb"
1852
- Google::Ads::GoogleAds::V4::Errors::TimeZoneErrorEnum::TimeZoneError.descriptor
1609
+ # @return [Google::Protobuf::EnumDescriptor] for the ConversionActionCountingType enum
1610
+ def self.conversion_action_counting_type
1611
+ require "google/ads/google_ads/v4/enums/conversion_action_counting_type_pb"
1612
+ Google::Ads::GoogleAds::V4::Enums::ConversionActionCountingTypeEnum::ConversionActionCountingType.descriptor
1853
1613
  end
1854
1614
 
1855
- # Returns the descriptor for the UserListError enum
1615
+ # Returns the descriptor for the ConversionActionStatus enum
1856
1616
  #
1857
- # @return [Google::Protobuf::EnumDescriptor] for the UserListError enum
1858
- def self.user_list_error
1859
- require "google/ads/google_ads/v4/errors/user_list_error_pb"
1860
- Google::Ads::GoogleAds::V4::Errors::UserListErrorEnum::UserListError.descriptor
1617
+ # @return [Google::Protobuf::EnumDescriptor] for the ConversionActionStatus enum
1618
+ def self.conversion_action_status
1619
+ require "google/ads/google_ads/v4/enums/conversion_action_status_pb"
1620
+ Google::Ads::GoogleAds::V4::Enums::ConversionActionStatusEnum::ConversionActionStatus.descriptor
1861
1621
  end
1862
1622
 
1863
- # Returns the descriptor for the ListOperationError enum
1623
+ # Returns the descriptor for the ConversionActionType enum
1864
1624
  #
1865
- # @return [Google::Protobuf::EnumDescriptor] for the ListOperationError enum
1866
- def self.list_operation_error
1867
- require "google/ads/google_ads/v4/errors/list_operation_error_pb"
1868
- Google::Ads::GoogleAds::V4::Errors::ListOperationErrorEnum::ListOperationError.descriptor
1625
+ # @return [Google::Protobuf::EnumDescriptor] for the ConversionActionType enum
1626
+ def self.conversion_action_type
1627
+ require "google/ads/google_ads/v4/enums/conversion_action_type_pb"
1628
+ Google::Ads::GoogleAds::V4::Enums::ConversionActionTypeEnum::ConversionActionType.descriptor
1869
1629
  end
1870
1630
 
1871
- # Returns the descriptor for the ConversionAdjustmentUploadError enum
1631
+ # Returns the descriptor for the DataDrivenModelStatus enum
1872
1632
  #
1873
- # @return [Google::Protobuf::EnumDescriptor] for the ConversionAdjustmentUploadError enum
1874
- def self.conversion_adjustment_upload_error
1875
- require "google/ads/google_ads/v4/errors/conversion_adjustment_upload_error_pb"
1876
- Google::Ads::GoogleAds::V4::Errors::ConversionAdjustmentUploadErrorEnum::ConversionAdjustmentUploadError.descriptor
1633
+ # @return [Google::Protobuf::EnumDescriptor] for the DataDrivenModelStatus enum
1634
+ def self.data_driven_model_status
1635
+ require "google/ads/google_ads/v4/enums/data_driven_model_status_pb"
1636
+ Google::Ads::GoogleAds::V4::Enums::DataDrivenModelStatusEnum::DataDrivenModelStatus.descriptor
1877
1637
  end
1878
1638
 
1879
- # Returns the descriptor for the ConversionActionError enum
1639
+ # Returns the descriptor for the AccessRole enum
1880
1640
  #
1881
- # @return [Google::Protobuf::EnumDescriptor] for the ConversionActionError enum
1882
- def self.conversion_action_error
1883
- require "google/ads/google_ads/v4/errors/conversion_action_error_pb"
1884
- Google::Ads::GoogleAds::V4::Errors::ConversionActionErrorEnum::ConversionActionError.descriptor
1641
+ # @return [Google::Protobuf::EnumDescriptor] for the AccessRole enum
1642
+ def self.access_role
1643
+ require "google/ads/google_ads/v4/enums/access_role_pb"
1644
+ Google::Ads::GoogleAds::V4::Enums::AccessRoleEnum::AccessRole.descriptor
1885
1645
  end
1886
1646
 
1887
- # Returns the descriptor for the PolicyFindingError enum
1647
+ # Returns the descriptor for the KeywordPlanCompetitionLevel enum
1888
1648
  #
1889
- # @return [Google::Protobuf::EnumDescriptor] for the PolicyFindingError enum
1890
- def self.policy_finding_error
1891
- require "google/ads/google_ads/v4/errors/policy_finding_error_pb"
1892
- Google::Ads::GoogleAds::V4::Errors::PolicyFindingErrorEnum::PolicyFindingError.descriptor
1649
+ # @return [Google::Protobuf::EnumDescriptor] for the KeywordPlanCompetitionLevel enum
1650
+ def self.keyword_plan_competition_level
1651
+ require "google/ads/google_ads/v4/enums/keyword_plan_competition_level_pb"
1652
+ Google::Ads::GoogleAds::V4::Enums::KeywordPlanCompetitionLevelEnum::KeywordPlanCompetitionLevel.descriptor
1893
1653
  end
1894
1654
 
1895
- # Returns the descriptor for the FieldError enum
1896
- #
1897
- # @return [Google::Protobuf::EnumDescriptor] for the FieldError enum
1898
- def self.field_error
1899
- require "google/ads/google_ads/v4/errors/field_error_pb"
1900
- Google::Ads::GoogleAds::V4::Errors::FieldErrorEnum::FieldError.descriptor
1655
+ # Returns the descriptor for the MonthOfYear enum
1656
+ #
1657
+ # @return [Google::Protobuf::EnumDescriptor] for the MonthOfYear enum
1658
+ def self.month_of_year
1659
+ require "google/ads/google_ads/v4/enums/month_of_year_pb"
1660
+ Google::Ads::GoogleAds::V4::Enums::MonthOfYearEnum::MonthOfYear.descriptor
1901
1661
  end
1902
1662
 
1903
- # Returns the descriptor for the OperationAccessDeniedError enum
1663
+ # Returns the descriptor for the InteractionEventType enum
1904
1664
  #
1905
- # @return [Google::Protobuf::EnumDescriptor] for the OperationAccessDeniedError enum
1906
- def self.operation_access_denied_error
1907
- require "google/ads/google_ads/v4/errors/operation_access_denied_error_pb"
1908
- Google::Ads::GoogleAds::V4::Errors::OperationAccessDeniedErrorEnum::OperationAccessDeniedError.descriptor
1665
+ # @return [Google::Protobuf::EnumDescriptor] for the InteractionEventType enum
1666
+ def self.interaction_event_type
1667
+ require "google/ads/google_ads/v4/enums/interaction_event_type_pb"
1668
+ Google::Ads::GoogleAds::V4::Enums::InteractionEventTypeEnum::InteractionEventType.descriptor
1909
1669
  end
1910
1670
 
1911
- # Returns the descriptor for the NullError enum
1671
+ # Returns the descriptor for the AdNetworkType enum
1912
1672
  #
1913
- # @return [Google::Protobuf::EnumDescriptor] for the NullError enum
1914
- def self.null_error
1915
- require "google/ads/google_ads/v4/errors/null_error_pb"
1916
- Google::Ads::GoogleAds::V4::Errors::NullErrorEnum::NullError.descriptor
1673
+ # @return [Google::Protobuf::EnumDescriptor] for the AdNetworkType enum
1674
+ def self.ad_network_type
1675
+ require "google/ads/google_ads/v4/enums/ad_network_type_pb"
1676
+ Google::Ads::GoogleAds::V4::Enums::AdNetworkTypeEnum::AdNetworkType.descriptor
1917
1677
  end
1918
1678
 
1919
- # Returns the descriptor for the LanguageCodeError enum
1679
+ # Returns the descriptor for the ClickType enum
1920
1680
  #
1921
- # @return [Google::Protobuf::EnumDescriptor] for the LanguageCodeError enum
1922
- def self.language_code_error
1923
- require "google/ads/google_ads/v4/errors/language_code_error_pb"
1924
- Google::Ads::GoogleAds::V4::Errors::LanguageCodeErrorEnum::LanguageCodeError.descriptor
1681
+ # @return [Google::Protobuf::EnumDescriptor] for the ClickType enum
1682
+ def self.click_type
1683
+ require "google/ads/google_ads/v4/enums/click_type_pb"
1684
+ Google::Ads::GoogleAds::V4::Enums::ClickTypeEnum::ClickType.descriptor
1925
1685
  end
1926
1686
 
1927
- # Returns the descriptor for the AuthorizationError enum
1687
+ # Returns the descriptor for the ConversionAttributionEventType enum
1928
1688
  #
1929
- # @return [Google::Protobuf::EnumDescriptor] for the AuthorizationError enum
1930
- def self.authorization_error
1931
- require "google/ads/google_ads/v4/errors/authorization_error_pb"
1932
- Google::Ads::GoogleAds::V4::Errors::AuthorizationErrorEnum::AuthorizationError.descriptor
1689
+ # @return [Google::Protobuf::EnumDescriptor] for the ConversionAttributionEventType enum
1690
+ def self.conversion_attribution_event_type
1691
+ require "google/ads/google_ads/v4/enums/conversion_attribution_event_type_pb"
1692
+ Google::Ads::GoogleAds::V4::Enums::ConversionAttributionEventTypeEnum::ConversionAttributionEventType.descriptor
1933
1693
  end
1934
1694
 
1935
- # Returns the descriptor for the SharedCriterionError enum
1695
+ # Returns the descriptor for the ConversionLagBucket enum
1936
1696
  #
1937
- # @return [Google::Protobuf::EnumDescriptor] for the SharedCriterionError enum
1938
- def self.shared_criterion_error
1939
- require "google/ads/google_ads/v4/errors/shared_criterion_error_pb"
1940
- Google::Ads::GoogleAds::V4::Errors::SharedCriterionErrorEnum::SharedCriterionError.descriptor
1697
+ # @return [Google::Protobuf::EnumDescriptor] for the ConversionLagBucket enum
1698
+ def self.conversion_lag_bucket
1699
+ require "google/ads/google_ads/v4/enums/conversion_lag_bucket_pb"
1700
+ Google::Ads::GoogleAds::V4::Enums::ConversionLagBucketEnum::ConversionLagBucket.descriptor
1941
1701
  end
1942
1702
 
1943
- # Returns the descriptor for the FeedError enum
1703
+ # Returns the descriptor for the ConversionOrAdjustmentLagBucket enum
1944
1704
  #
1945
- # @return [Google::Protobuf::EnumDescriptor] for the FeedError enum
1946
- def self.feed_error
1947
- require "google/ads/google_ads/v4/errors/feed_error_pb"
1948
- Google::Ads::GoogleAds::V4::Errors::FeedErrorEnum::FeedError.descriptor
1705
+ # @return [Google::Protobuf::EnumDescriptor] for the ConversionOrAdjustmentLagBucket enum
1706
+ def self.conversion_or_adjustment_lag_bucket
1707
+ require "google/ads/google_ads/v4/enums/conversion_or_adjustment_lag_bucket_pb"
1708
+ Google::Ads::GoogleAds::V4::Enums::ConversionOrAdjustmentLagBucketEnum::ConversionOrAdjustmentLagBucket.descriptor
1949
1709
  end
1950
1710
 
1951
- # Returns the descriptor for the MutateError enum
1711
+ # Returns the descriptor for the ExternalConversionSource enum
1952
1712
  #
1953
- # @return [Google::Protobuf::EnumDescriptor] for the MutateError enum
1954
- def self.mutate_error
1955
- require "google/ads/google_ads/v4/errors/mutate_error_pb"
1956
- Google::Ads::GoogleAds::V4::Errors::MutateErrorEnum::MutateError.descriptor
1713
+ # @return [Google::Protobuf::EnumDescriptor] for the ExternalConversionSource enum
1714
+ def self.external_conversion_source
1715
+ require "google/ads/google_ads/v4/enums/external_conversion_source_pb"
1716
+ Google::Ads::GoogleAds::V4::Enums::ExternalConversionSourceEnum::ExternalConversionSource.descriptor
1957
1717
  end
1958
1718
 
1959
- # Returns the descriptor for the SizeLimitError enum
1719
+ # Returns the descriptor for the HotelPriceBucket enum
1960
1720
  #
1961
- # @return [Google::Protobuf::EnumDescriptor] for the SizeLimitError enum
1962
- def self.size_limit_error
1963
- require "google/ads/google_ads/v4/errors/size_limit_error_pb"
1964
- Google::Ads::GoogleAds::V4::Errors::SizeLimitErrorEnum::SizeLimitError.descriptor
1721
+ # @return [Google::Protobuf::EnumDescriptor] for the HotelPriceBucket enum
1722
+ def self.hotel_price_bucket
1723
+ require "google/ads/google_ads/v4/enums/hotel_price_bucket_pb"
1724
+ Google::Ads::GoogleAds::V4::Enums::HotelPriceBucketEnum::HotelPriceBucket.descriptor
1965
1725
  end
1966
1726
 
1967
- # Returns the descriptor for the CampaignBudgetError enum
1727
+ # Returns the descriptor for the HotelRateType enum
1968
1728
  #
1969
- # @return [Google::Protobuf::EnumDescriptor] for the CampaignBudgetError enum
1970
- def self.campaign_budget_error
1971
- require "google/ads/google_ads/v4/errors/campaign_budget_error_pb"
1972
- Google::Ads::GoogleAds::V4::Errors::CampaignBudgetErrorEnum::CampaignBudgetError.descriptor
1729
+ # @return [Google::Protobuf::EnumDescriptor] for the HotelRateType enum
1730
+ def self.hotel_rate_type
1731
+ require "google/ads/google_ads/v4/enums/hotel_rate_type_pb"
1732
+ Google::Ads::GoogleAds::V4::Enums::HotelRateTypeEnum::HotelRateType.descriptor
1973
1733
  end
1974
1734
 
1975
- # Returns the descriptor for the MediaFileError enum
1735
+ # Returns the descriptor for the SearchEngineResultsPageType enum
1976
1736
  #
1977
- # @return [Google::Protobuf::EnumDescriptor] for the MediaFileError enum
1978
- def self.media_file_error
1979
- require "google/ads/google_ads/v4/errors/media_file_error_pb"
1980
- Google::Ads::GoogleAds::V4::Errors::MediaFileErrorEnum::MediaFileError.descriptor
1737
+ # @return [Google::Protobuf::EnumDescriptor] for the SearchEngineResultsPageType enum
1738
+ def self.search_engine_results_page_type
1739
+ require "google/ads/google_ads/v4/enums/search_engine_results_page_type_pb"
1740
+ Google::Ads::GoogleAds::V4::Enums::SearchEngineResultsPageTypeEnum::SearchEngineResultsPageType.descriptor
1981
1741
  end
1982
1742
 
1983
- # Returns the descriptor for the PolicyViolationError enum
1743
+ # Returns the descriptor for the SearchTermMatchType enum
1984
1744
  #
1985
- # @return [Google::Protobuf::EnumDescriptor] for the PolicyViolationError enum
1986
- def self.policy_violation_error
1987
- require "google/ads/google_ads/v4/errors/policy_violation_error_pb"
1988
- Google::Ads::GoogleAds::V4::Errors::PolicyViolationErrorEnum::PolicyViolationError.descriptor
1745
+ # @return [Google::Protobuf::EnumDescriptor] for the SearchTermMatchType enum
1746
+ def self.search_term_match_type
1747
+ require "google/ads/google_ads/v4/enums/search_term_match_type_pb"
1748
+ Google::Ads::GoogleAds::V4::Enums::SearchTermMatchTypeEnum::SearchTermMatchType.descriptor
1989
1749
  end
1990
1750
 
1991
- # Returns the descriptor for the KeywordPlanAdGroupKeywordError enum
1751
+ # Returns the descriptor for the Slot enum
1992
1752
  #
1993
- # @return [Google::Protobuf::EnumDescriptor] for the KeywordPlanAdGroupKeywordError enum
1994
- def self.keyword_plan_ad_group_keyword_error
1995
- require "google/ads/google_ads/v4/errors/keyword_plan_ad_group_keyword_error_pb"
1996
- Google::Ads::GoogleAds::V4::Errors::KeywordPlanAdGroupKeywordErrorEnum::KeywordPlanAdGroupKeywordError.descriptor
1753
+ # @return [Google::Protobuf::EnumDescriptor] for the Slot enum
1754
+ def self.slot
1755
+ require "google/ads/google_ads/v4/enums/slot_pb"
1756
+ Google::Ads::GoogleAds::V4::Enums::SlotEnum::Slot.descriptor
1997
1757
  end
1998
1758
 
1999
- # Returns the descriptor for the SettingError enum
1759
+ # Returns the descriptor for the SummaryRowSetting enum
2000
1760
  #
2001
- # @return [Google::Protobuf::EnumDescriptor] for the SettingError enum
2002
- def self.setting_error
2003
- require "google/ads/google_ads/v4/errors/setting_error_pb"
2004
- Google::Ads::GoogleAds::V4::Errors::SettingErrorEnum::SettingError.descriptor
1761
+ # @return [Google::Protobuf::EnumDescriptor] for the SummaryRowSetting enum
1762
+ def self.summary_row_setting
1763
+ require "google/ads/google_ads/v4/enums/summary_row_setting_pb"
1764
+ Google::Ads::GoogleAds::V4::Enums::SummaryRowSettingEnum::SummaryRowSetting.descriptor
2005
1765
  end
2006
1766
 
2007
- # Returns the descriptor for the DatabaseError enum
1767
+ # Returns the descriptor for the ReachPlanAdLength enum
2008
1768
  #
2009
- # @return [Google::Protobuf::EnumDescriptor] for the DatabaseError enum
2010
- def self.database_error
2011
- require "google/ads/google_ads/v4/errors/database_error_pb"
2012
- Google::Ads::GoogleAds::V4::Errors::DatabaseErrorEnum::DatabaseError.descriptor
1769
+ # @return [Google::Protobuf::EnumDescriptor] for the ReachPlanAdLength enum
1770
+ def self.reach_plan_ad_length
1771
+ require "google/ads/google_ads/v4/enums/reach_plan_ad_length_pb"
1772
+ Google::Ads::GoogleAds::V4::Enums::ReachPlanAdLengthEnum::ReachPlanAdLength.descriptor
2013
1773
  end
2014
1774
 
2015
- # Returns the descriptor for the KeywordPlanCampaignError enum
1775
+ # Returns the descriptor for the ReachPlanAgeRange enum
2016
1776
  #
2017
- # @return [Google::Protobuf::EnumDescriptor] for the KeywordPlanCampaignError enum
2018
- def self.keyword_plan_campaign_error
2019
- require "google/ads/google_ads/v4/errors/keyword_plan_campaign_error_pb"
2020
- Google::Ads::GoogleAds::V4::Errors::KeywordPlanCampaignErrorEnum::KeywordPlanCampaignError.descriptor
1777
+ # @return [Google::Protobuf::EnumDescriptor] for the ReachPlanAgeRange enum
1778
+ def self.reach_plan_age_range
1779
+ require "google/ads/google_ads/v4/enums/reach_plan_age_range_pb"
1780
+ Google::Ads::GoogleAds::V4::Enums::ReachPlanAgeRangeEnum::ReachPlanAgeRange.descriptor
2021
1781
  end
2022
1782
 
2023
- # Returns the descriptor for the ContextError enum
1783
+ # Returns the descriptor for the ReachPlanNetwork enum
2024
1784
  #
2025
- # @return [Google::Protobuf::EnumDescriptor] for the ContextError enum
2026
- def self.context_error
2027
- require "google/ads/google_ads/v4/errors/context_error_pb"
2028
- Google::Ads::GoogleAds::V4::Errors::ContextErrorEnum::ContextError.descriptor
1785
+ # @return [Google::Protobuf::EnumDescriptor] for the ReachPlanNetwork enum
1786
+ def self.reach_plan_network
1787
+ require "google/ads/google_ads/v4/enums/reach_plan_network_pb"
1788
+ Google::Ads::GoogleAds::V4::Enums::ReachPlanNetworkEnum::ReachPlanNetwork.descriptor
2029
1789
  end
2030
1790
 
2031
- # Returns the descriptor for the DistinctError enum
1791
+ # Returns the descriptor for the ConversionAdjustmentType enum
2032
1792
  #
2033
- # @return [Google::Protobuf::EnumDescriptor] for the DistinctError enum
2034
- def self.distinct_error
2035
- require "google/ads/google_ads/v4/errors/distinct_error_pb"
2036
- Google::Ads::GoogleAds::V4::Errors::DistinctErrorEnum::DistinctError.descriptor
1793
+ # @return [Google::Protobuf::EnumDescriptor] for the ConversionAdjustmentType enum
1794
+ def self.conversion_adjustment_type
1795
+ require "google/ads/google_ads/v4/enums/conversion_adjustment_type_pb"
1796
+ Google::Ads::GoogleAds::V4::Enums::ConversionAdjustmentTypeEnum::ConversionAdjustmentType.descriptor
2037
1797
  end
2038
1798
 
2039
- # Returns the descriptor for the RecommendationError enum
1799
+ # Returns the descriptor for the CampaignFeedError enum
2040
1800
  #
2041
- # @return [Google::Protobuf::EnumDescriptor] for the RecommendationError enum
2042
- def self.recommendation_error
2043
- require "google/ads/google_ads/v4/errors/recommendation_error_pb"
2044
- Google::Ads::GoogleAds::V4::Errors::RecommendationErrorEnum::RecommendationError.descriptor
1801
+ # @return [Google::Protobuf::EnumDescriptor] for the CampaignFeedError enum
1802
+ def self.campaign_feed_error
1803
+ require "google/ads/google_ads/v4/errors/campaign_feed_error_pb"
1804
+ Google::Ads::GoogleAds::V4::Errors::CampaignFeedErrorEnum::CampaignFeedError.descriptor
2045
1805
  end
2046
1806
 
2047
- # Returns the descriptor for the FunctionParsingError enum
1807
+ # Returns the descriptor for the SettingError enum
2048
1808
  #
2049
- # @return [Google::Protobuf::EnumDescriptor] for the FunctionParsingError enum
2050
- def self.function_parsing_error
2051
- require "google/ads/google_ads/v4/errors/function_parsing_error_pb"
2052
- Google::Ads::GoogleAds::V4::Errors::FunctionParsingErrorEnum::FunctionParsingError.descriptor
1809
+ # @return [Google::Protobuf::EnumDescriptor] for the SettingError enum
1810
+ def self.setting_error
1811
+ require "google/ads/google_ads/v4/errors/setting_error_pb"
1812
+ Google::Ads::GoogleAds::V4::Errors::SettingErrorEnum::SettingError.descriptor
2053
1813
  end
2054
1814
 
2055
- # Returns the descriptor for the CampaignDraftError enum
1815
+ # Returns the descriptor for the CampaignCriterionError enum
2056
1816
  #
2057
- # @return [Google::Protobuf::EnumDescriptor] for the CampaignDraftError enum
2058
- def self.campaign_draft_error
2059
- require "google/ads/google_ads/v4/errors/campaign_draft_error_pb"
2060
- Google::Ads::GoogleAds::V4::Errors::CampaignDraftErrorEnum::CampaignDraftError.descriptor
1817
+ # @return [Google::Protobuf::EnumDescriptor] for the CampaignCriterionError enum
1818
+ def self.campaign_criterion_error
1819
+ require "google/ads/google_ads/v4/errors/campaign_criterion_error_pb"
1820
+ Google::Ads::GoogleAds::V4::Errors::CampaignCriterionErrorEnum::CampaignCriterionError.descriptor
2061
1821
  end
2062
1822
 
2063
- # Returns the descriptor for the LabelError enum
1823
+ # Returns the descriptor for the SizeLimitError enum
2064
1824
  #
2065
- # @return [Google::Protobuf::EnumDescriptor] for the LabelError enum
2066
- def self.label_error
2067
- require "google/ads/google_ads/v4/errors/label_error_pb"
2068
- Google::Ads::GoogleAds::V4::Errors::LabelErrorEnum::LabelError.descriptor
1825
+ # @return [Google::Protobuf::EnumDescriptor] for the SizeLimitError enum
1826
+ def self.size_limit_error
1827
+ require "google/ads/google_ads/v4/errors/size_limit_error_pb"
1828
+ Google::Ads::GoogleAds::V4::Errors::SizeLimitErrorEnum::SizeLimitError.descriptor
2069
1829
  end
2070
1830
 
2071
- # Returns the descriptor for the AccessInvitationError enum
1831
+ # Returns the descriptor for the SharedSetError enum
2072
1832
  #
2073
- # @return [Google::Protobuf::EnumDescriptor] for the AccessInvitationError enum
2074
- def self.access_invitation_error
2075
- require "google/ads/google_ads/v4/errors/access_invitation_error_pb"
2076
- Google::Ads::GoogleAds::V4::Errors::AccessInvitationErrorEnum::AccessInvitationError.descriptor
1833
+ # @return [Google::Protobuf::EnumDescriptor] for the SharedSetError enum
1834
+ def self.shared_set_error
1835
+ require "google/ads/google_ads/v4/errors/shared_set_error_pb"
1836
+ Google::Ads::GoogleAds::V4::Errors::SharedSetErrorEnum::SharedSetError.descriptor
2077
1837
  end
2078
1838
 
2079
1839
  # Returns the descriptor for the NotWhitelistedError enum
@@ -2084,12 +1844,12 @@ module Google
2084
1844
  Google::Ads::GoogleAds::V4::Errors::NotWhitelistedErrorEnum::NotWhitelistedError.descriptor
2085
1845
  end
2086
1846
 
2087
- # Returns the descriptor for the AdSharingError enum
1847
+ # Returns the descriptor for the AccessInvitationError enum
2088
1848
  #
2089
- # @return [Google::Protobuf::EnumDescriptor] for the AdSharingError enum
2090
- def self.ad_sharing_error
2091
- require "google/ads/google_ads/v4/errors/ad_sharing_error_pb"
2092
- Google::Ads::GoogleAds::V4::Errors::AdSharingErrorEnum::AdSharingError.descriptor
1849
+ # @return [Google::Protobuf::EnumDescriptor] for the AccessInvitationError enum
1850
+ def self.access_invitation_error
1851
+ require "google/ads/google_ads/v4/errors/access_invitation_error_pb"
1852
+ Google::Ads::GoogleAds::V4::Errors::AccessInvitationErrorEnum::AccessInvitationError.descriptor
2093
1853
  end
2094
1854
 
2095
1855
  # Returns the descriptor for the AccountBudgetProposalError enum
@@ -2116,6 +1876,14 @@ module Google
2116
1876
  Google::Ads::GoogleAds::V4::Errors::AdErrorEnum::AdError.descriptor
2117
1877
  end
2118
1878
 
1879
+ # Returns the descriptor for the AdGroupAdError enum
1880
+ #
1881
+ # @return [Google::Protobuf::EnumDescriptor] for the AdGroupAdError enum
1882
+ def self.ad_group_ad_error
1883
+ require "google/ads/google_ads/v4/errors/ad_group_ad_error_pb"
1884
+ Google::Ads::GoogleAds::V4::Errors::AdGroupAdErrorEnum::AdGroupAdError.descriptor
1885
+ end
1886
+
2119
1887
  # Returns the descriptor for the AdGroupBidModifierError enum
2120
1888
  #
2121
1889
  # @return [Google::Protobuf::EnumDescriptor] for the AdGroupBidModifierError enum
@@ -2156,6 +1924,14 @@ module Google
2156
1924
  Google::Ads::GoogleAds::V4::Errors::AdParameterErrorEnum::AdParameterError.descriptor
2157
1925
  end
2158
1926
 
1927
+ # Returns the descriptor for the AdSharingError enum
1928
+ #
1929
+ # @return [Google::Protobuf::EnumDescriptor] for the AdSharingError enum
1930
+ def self.ad_sharing_error
1931
+ require "google/ads/google_ads/v4/errors/ad_sharing_error_pb"
1932
+ Google::Ads::GoogleAds::V4::Errors::AdSharingErrorEnum::AdSharingError.descriptor
1933
+ end
1934
+
2159
1935
  # Returns the descriptor for the AdxError enum
2160
1936
  #
2161
1937
  # @return [Google::Protobuf::EnumDescriptor] for the AdxError enum
@@ -2188,6 +1964,14 @@ module Google
2188
1964
  Google::Ads::GoogleAds::V4::Errors::AuthenticationErrorEnum::AuthenticationError.descriptor
2189
1965
  end
2190
1966
 
1967
+ # Returns the descriptor for the AuthorizationError enum
1968
+ #
1969
+ # @return [Google::Protobuf::EnumDescriptor] for the AuthorizationError enum
1970
+ def self.authorization_error
1971
+ require "google/ads/google_ads/v4/errors/authorization_error_pb"
1972
+ Google::Ads::GoogleAds::V4::Errors::AuthorizationErrorEnum::AuthorizationError.descriptor
1973
+ end
1974
+
2191
1975
  # Returns the descriptor for the BatchJobError enum
2192
1976
  #
2193
1977
  # @return [Google::Protobuf::EnumDescriptor] for the BatchJobError enum
@@ -2220,12 +2004,20 @@ module Google
2220
2004
  Google::Ads::GoogleAds::V4::Errors::BillingSetupErrorEnum::BillingSetupError.descriptor
2221
2005
  end
2222
2006
 
2223
- # Returns the descriptor for the CampaignCriterionError enum
2007
+ # Returns the descriptor for the CampaignBudgetError enum
2224
2008
  #
2225
- # @return [Google::Protobuf::EnumDescriptor] for the CampaignCriterionError enum
2226
- def self.campaign_criterion_error
2227
- require "google/ads/google_ads/v4/errors/campaign_criterion_error_pb"
2228
- Google::Ads::GoogleAds::V4::Errors::CampaignCriterionErrorEnum::CampaignCriterionError.descriptor
2009
+ # @return [Google::Protobuf::EnumDescriptor] for the CampaignBudgetError enum
2010
+ def self.campaign_budget_error
2011
+ require "google/ads/google_ads/v4/errors/campaign_budget_error_pb"
2012
+ Google::Ads::GoogleAds::V4::Errors::CampaignBudgetErrorEnum::CampaignBudgetError.descriptor
2013
+ end
2014
+
2015
+ # Returns the descriptor for the CampaignDraftError enum
2016
+ #
2017
+ # @return [Google::Protobuf::EnumDescriptor] for the CampaignDraftError enum
2018
+ def self.campaign_draft_error
2019
+ require "google/ads/google_ads/v4/errors/campaign_draft_error_pb"
2020
+ Google::Ads::GoogleAds::V4::Errors::CampaignDraftErrorEnum::CampaignDraftError.descriptor
2229
2021
  end
2230
2022
 
2231
2023
  # Returns the descriptor for the CampaignError enum
@@ -2244,14 +2036,6 @@ module Google
2244
2036
  Google::Ads::GoogleAds::V4::Errors::CampaignExperimentErrorEnum::CampaignExperimentError.descriptor
2245
2037
  end
2246
2038
 
2247
- # Returns the descriptor for the CampaignFeedError enum
2248
- #
2249
- # @return [Google::Protobuf::EnumDescriptor] for the CampaignFeedError enum
2250
- def self.campaign_feed_error
2251
- require "google/ads/google_ads/v4/errors/campaign_feed_error_pb"
2252
- Google::Ads::GoogleAds::V4::Errors::CampaignFeedErrorEnum::CampaignFeedError.descriptor
2253
- end
2254
-
2255
2039
  # Returns the descriptor for the CampaignSharedSetError enum
2256
2040
  #
2257
2041
  # @return [Google::Protobuf::EnumDescriptor] for the CampaignSharedSetError enum
@@ -2276,6 +2060,30 @@ module Google
2276
2060
  Google::Ads::GoogleAds::V4::Errors::CollectionSizeErrorEnum::CollectionSizeError.descriptor
2277
2061
  end
2278
2062
 
2063
+ # Returns the descriptor for the ContextError enum
2064
+ #
2065
+ # @return [Google::Protobuf::EnumDescriptor] for the ContextError enum
2066
+ def self.context_error
2067
+ require "google/ads/google_ads/v4/errors/context_error_pb"
2068
+ Google::Ads::GoogleAds::V4::Errors::ContextErrorEnum::ContextError.descriptor
2069
+ end
2070
+
2071
+ # Returns the descriptor for the ConversionActionError enum
2072
+ #
2073
+ # @return [Google::Protobuf::EnumDescriptor] for the ConversionActionError enum
2074
+ def self.conversion_action_error
2075
+ require "google/ads/google_ads/v4/errors/conversion_action_error_pb"
2076
+ Google::Ads::GoogleAds::V4::Errors::ConversionActionErrorEnum::ConversionActionError.descriptor
2077
+ end
2078
+
2079
+ # Returns the descriptor for the ConversionAdjustmentUploadError enum
2080
+ #
2081
+ # @return [Google::Protobuf::EnumDescriptor] for the ConversionAdjustmentUploadError enum
2082
+ def self.conversion_adjustment_upload_error
2083
+ require "google/ads/google_ads/v4/errors/conversion_adjustment_upload_error_pb"
2084
+ Google::Ads::GoogleAds::V4::Errors::ConversionAdjustmentUploadErrorEnum::ConversionAdjustmentUploadError.descriptor
2085
+ end
2086
+
2279
2087
  # Returns the descriptor for the ConversionUploadError enum
2280
2088
  #
2281
2089
  # @return [Google::Protobuf::EnumDescriptor] for the ConversionUploadError enum
@@ -2300,6 +2108,14 @@ module Google
2300
2108
  Google::Ads::GoogleAds::V4::Errors::CriterionErrorEnum::CriterionError.descriptor
2301
2109
  end
2302
2110
 
2111
+ # Returns the descriptor for the CurrencyCodeError enum
2112
+ #
2113
+ # @return [Google::Protobuf::EnumDescriptor] for the CurrencyCodeError enum
2114
+ def self.currency_code_error
2115
+ require "google/ads/google_ads/v4/errors/currency_code_error_pb"
2116
+ Google::Ads::GoogleAds::V4::Errors::CurrencyCodeErrorEnum::CurrencyCodeError.descriptor
2117
+ end
2118
+
2303
2119
  # Returns the descriptor for the CustomInterestError enum
2304
2120
  #
2305
2121
  # @return [Google::Protobuf::EnumDescriptor] for the CustomInterestError enum
@@ -2324,6 +2140,14 @@ module Google
2324
2140
  Google::Ads::GoogleAds::V4::Errors::CustomerErrorEnum::CustomerError.descriptor
2325
2141
  end
2326
2142
 
2143
+ # Returns the descriptor for the CustomerFeedError enum
2144
+ #
2145
+ # @return [Google::Protobuf::EnumDescriptor] for the CustomerFeedError enum
2146
+ def self.customer_feed_error
2147
+ require "google/ads/google_ads/v4/errors/customer_feed_error_pb"
2148
+ Google::Ads::GoogleAds::V4::Errors::CustomerFeedErrorEnum::CustomerFeedError.descriptor
2149
+ end
2150
+
2327
2151
  # Returns the descriptor for the CustomerManagerLinkError enum
2328
2152
  #
2329
2153
  # @return [Google::Protobuf::EnumDescriptor] for the CustomerManagerLinkError enum
@@ -2332,6 +2156,14 @@ module Google
2332
2156
  Google::Ads::GoogleAds::V4::Errors::CustomerManagerLinkErrorEnum::CustomerManagerLinkError.descriptor
2333
2157
  end
2334
2158
 
2159
+ # Returns the descriptor for the DatabaseError enum
2160
+ #
2161
+ # @return [Google::Protobuf::EnumDescriptor] for the DatabaseError enum
2162
+ def self.database_error
2163
+ require "google/ads/google_ads/v4/errors/database_error_pb"
2164
+ Google::Ads::GoogleAds::V4::Errors::DatabaseErrorEnum::DatabaseError.descriptor
2165
+ end
2166
+
2335
2167
  # Returns the descriptor for the DateError enum
2336
2168
  #
2337
2169
  # @return [Google::Protobuf::EnumDescriptor] for the DateError enum
@@ -2348,6 +2180,14 @@ module Google
2348
2180
  Google::Ads::GoogleAds::V4::Errors::DateRangeErrorEnum::DateRangeError.descriptor
2349
2181
  end
2350
2182
 
2183
+ # Returns the descriptor for the DistinctError enum
2184
+ #
2185
+ # @return [Google::Protobuf::EnumDescriptor] for the DistinctError enum
2186
+ def self.distinct_error
2187
+ require "google/ads/google_ads/v4/errors/distinct_error_pb"
2188
+ Google::Ads::GoogleAds::V4::Errors::DistinctErrorEnum::DistinctError.descriptor
2189
+ end
2190
+
2351
2191
  # Returns the descriptor for the EnumError enum
2352
2192
  #
2353
2193
  # @return [Google::Protobuf::EnumDescriptor] for the EnumError enum
@@ -2380,6 +2220,14 @@ module Google
2380
2220
  Google::Ads::GoogleAds::V4::Errors::FeedAttributeReferenceErrorEnum::FeedAttributeReferenceError.descriptor
2381
2221
  end
2382
2222
 
2223
+ # Returns the descriptor for the FeedError enum
2224
+ #
2225
+ # @return [Google::Protobuf::EnumDescriptor] for the FeedError enum
2226
+ def self.feed_error
2227
+ require "google/ads/google_ads/v4/errors/feed_error_pb"
2228
+ Google::Ads::GoogleAds::V4::Errors::FeedErrorEnum::FeedError.descriptor
2229
+ end
2230
+
2383
2231
  # Returns the descriptor for the FeedItemError enum
2384
2232
  #
2385
2233
  # @return [Google::Protobuf::EnumDescriptor] for the FeedItemError enum
@@ -2404,6 +2252,14 @@ module Google
2404
2252
  Google::Ads::GoogleAds::V4::Errors::FeedMappingErrorEnum::FeedMappingError.descriptor
2405
2253
  end
2406
2254
 
2255
+ # Returns the descriptor for the FieldError enum
2256
+ #
2257
+ # @return [Google::Protobuf::EnumDescriptor] for the FieldError enum
2258
+ def self.field_error
2259
+ require "google/ads/google_ads/v4/errors/field_error_pb"
2260
+ Google::Ads::GoogleAds::V4::Errors::FieldErrorEnum::FieldError.descriptor
2261
+ end
2262
+
2407
2263
  # Returns the descriptor for the FieldMaskError enum
2408
2264
  #
2409
2265
  # @return [Google::Protobuf::EnumDescriptor] for the FieldMaskError enum
@@ -2420,6 +2276,14 @@ module Google
2420
2276
  Google::Ads::GoogleAds::V4::Errors::FunctionErrorEnum::FunctionError.descriptor
2421
2277
  end
2422
2278
 
2279
+ # Returns the descriptor for the FunctionParsingError enum
2280
+ #
2281
+ # @return [Google::Protobuf::EnumDescriptor] for the FunctionParsingError enum
2282
+ def self.function_parsing_error
2283
+ require "google/ads/google_ads/v4/errors/function_parsing_error_pb"
2284
+ Google::Ads::GoogleAds::V4::Errors::FunctionParsingErrorEnum::FunctionParsingError.descriptor
2285
+ end
2286
+
2423
2287
  # Returns the descriptor for the GeoTargetConstantSuggestionError enum
2424
2288
  #
2425
2289
  # @return [Google::Protobuf::EnumDescriptor] for the GeoTargetConstantSuggestionError enum
@@ -2428,6 +2292,14 @@ module Google
2428
2292
  Google::Ads::GoogleAds::V4::Errors::GeoTargetConstantSuggestionErrorEnum::GeoTargetConstantSuggestionError.descriptor
2429
2293
  end
2430
2294
 
2295
+ # Returns the descriptor for the HeaderError enum
2296
+ #
2297
+ # @return [Google::Protobuf::EnumDescriptor] for the HeaderError enum
2298
+ def self.header_error
2299
+ require "google/ads/google_ads/v4/errors/header_error_pb"
2300
+ Google::Ads::GoogleAds::V4::Errors::HeaderErrorEnum::HeaderError.descriptor
2301
+ end
2302
+
2431
2303
  # Returns the descriptor for the IdError enum
2432
2304
  #
2433
2305
  # @return [Google::Protobuf::EnumDescriptor] for the IdError enum
@@ -2468,6 +2340,22 @@ module Google
2468
2340
  Google::Ads::GoogleAds::V4::Errors::KeywordPlanAdGroupErrorEnum::KeywordPlanAdGroupError.descriptor
2469
2341
  end
2470
2342
 
2343
+ # Returns the descriptor for the KeywordPlanAdGroupKeywordError enum
2344
+ #
2345
+ # @return [Google::Protobuf::EnumDescriptor] for the KeywordPlanAdGroupKeywordError enum
2346
+ def self.keyword_plan_ad_group_keyword_error
2347
+ require "google/ads/google_ads/v4/errors/keyword_plan_ad_group_keyword_error_pb"
2348
+ Google::Ads::GoogleAds::V4::Errors::KeywordPlanAdGroupKeywordErrorEnum::KeywordPlanAdGroupKeywordError.descriptor
2349
+ end
2350
+
2351
+ # Returns the descriptor for the KeywordPlanCampaignError enum
2352
+ #
2353
+ # @return [Google::Protobuf::EnumDescriptor] for the KeywordPlanCampaignError enum
2354
+ def self.keyword_plan_campaign_error
2355
+ require "google/ads/google_ads/v4/errors/keyword_plan_campaign_error_pb"
2356
+ Google::Ads::GoogleAds::V4::Errors::KeywordPlanCampaignErrorEnum::KeywordPlanCampaignError.descriptor
2357
+ end
2358
+
2471
2359
  # Returns the descriptor for the KeywordPlanCampaignKeywordError enum
2472
2360
  #
2473
2361
  # @return [Google::Protobuf::EnumDescriptor] for the KeywordPlanCampaignKeywordError enum
@@ -2484,6 +2372,38 @@ module Google
2484
2372
  Google::Ads::GoogleAds::V4::Errors::KeywordPlanErrorEnum::KeywordPlanError.descriptor
2485
2373
  end
2486
2374
 
2375
+ # Returns the descriptor for the KeywordPlanIdeaError enum
2376
+ #
2377
+ # @return [Google::Protobuf::EnumDescriptor] for the KeywordPlanIdeaError enum
2378
+ def self.keyword_plan_idea_error
2379
+ require "google/ads/google_ads/v4/errors/keyword_plan_idea_error_pb"
2380
+ Google::Ads::GoogleAds::V4::Errors::KeywordPlanIdeaErrorEnum::KeywordPlanIdeaError.descriptor
2381
+ end
2382
+
2383
+ # Returns the descriptor for the LabelError enum
2384
+ #
2385
+ # @return [Google::Protobuf::EnumDescriptor] for the LabelError enum
2386
+ def self.label_error
2387
+ require "google/ads/google_ads/v4/errors/label_error_pb"
2388
+ Google::Ads::GoogleAds::V4::Errors::LabelErrorEnum::LabelError.descriptor
2389
+ end
2390
+
2391
+ # Returns the descriptor for the LanguageCodeError enum
2392
+ #
2393
+ # @return [Google::Protobuf::EnumDescriptor] for the LanguageCodeError enum
2394
+ def self.language_code_error
2395
+ require "google/ads/google_ads/v4/errors/language_code_error_pb"
2396
+ Google::Ads::GoogleAds::V4::Errors::LanguageCodeErrorEnum::LanguageCodeError.descriptor
2397
+ end
2398
+
2399
+ # Returns the descriptor for the ListOperationError enum
2400
+ #
2401
+ # @return [Google::Protobuf::EnumDescriptor] for the ListOperationError enum
2402
+ def self.list_operation_error
2403
+ require "google/ads/google_ads/v4/errors/list_operation_error_pb"
2404
+ Google::Ads::GoogleAds::V4::Errors::ListOperationErrorEnum::ListOperationError.descriptor
2405
+ end
2406
+
2487
2407
  # Returns the descriptor for the ManagerLinkError enum
2488
2408
  #
2489
2409
  # @return [Google::Protobuf::EnumDescriptor] for the ManagerLinkError enum
@@ -2500,6 +2420,14 @@ module Google
2500
2420
  Google::Ads::GoogleAds::V4::Errors::MediaBundleErrorEnum::MediaBundleError.descriptor
2501
2421
  end
2502
2422
 
2423
+ # Returns the descriptor for the MediaFileError enum
2424
+ #
2425
+ # @return [Google::Protobuf::EnumDescriptor] for the MediaFileError enum
2426
+ def self.media_file_error
2427
+ require "google/ads/google_ads/v4/errors/media_file_error_pb"
2428
+ Google::Ads::GoogleAds::V4::Errors::MediaFileErrorEnum::MediaFileError.descriptor
2429
+ end
2430
+
2503
2431
  # Returns the descriptor for the MediaUploadError enum
2504
2432
  #
2505
2433
  # @return [Google::Protobuf::EnumDescriptor] for the MediaUploadError enum
@@ -2516,6 +2444,14 @@ module Google
2516
2444
  Google::Ads::GoogleAds::V4::Errors::MultiplierErrorEnum::MultiplierError.descriptor
2517
2445
  end
2518
2446
 
2447
+ # Returns the descriptor for the MutateError enum
2448
+ #
2449
+ # @return [Google::Protobuf::EnumDescriptor] for the MutateError enum
2450
+ def self.mutate_error
2451
+ require "google/ads/google_ads/v4/errors/mutate_error_pb"
2452
+ Google::Ads::GoogleAds::V4::Errors::MutateErrorEnum::MutateError.descriptor
2453
+ end
2454
+
2519
2455
  # Returns the descriptor for the NewResourceCreationError enum
2520
2456
  #
2521
2457
  # @return [Google::Protobuf::EnumDescriptor] for the NewResourceCreationError enum
@@ -2532,6 +2468,30 @@ module Google
2532
2468
  Google::Ads::GoogleAds::V4::Errors::NotEmptyErrorEnum::NotEmptyError.descriptor
2533
2469
  end
2534
2470
 
2471
+ # Returns the descriptor for the NullError enum
2472
+ #
2473
+ # @return [Google::Protobuf::EnumDescriptor] for the NullError enum
2474
+ def self.null_error
2475
+ require "google/ads/google_ads/v4/errors/null_error_pb"
2476
+ Google::Ads::GoogleAds::V4::Errors::NullErrorEnum::NullError.descriptor
2477
+ end
2478
+
2479
+ # Returns the descriptor for the OfflineUserDataJobError enum
2480
+ #
2481
+ # @return [Google::Protobuf::EnumDescriptor] for the OfflineUserDataJobError enum
2482
+ def self.offline_user_data_job_error
2483
+ require "google/ads/google_ads/v4/errors/offline_user_data_job_error_pb"
2484
+ Google::Ads::GoogleAds::V4::Errors::OfflineUserDataJobErrorEnum::OfflineUserDataJobError.descriptor
2485
+ end
2486
+
2487
+ # Returns the descriptor for the OperationAccessDeniedError enum
2488
+ #
2489
+ # @return [Google::Protobuf::EnumDescriptor] for the OperationAccessDeniedError enum
2490
+ def self.operation_access_denied_error
2491
+ require "google/ads/google_ads/v4/errors/operation_access_denied_error_pb"
2492
+ Google::Ads::GoogleAds::V4::Errors::OperationAccessDeniedErrorEnum::OperationAccessDeniedError.descriptor
2493
+ end
2494
+
2535
2495
  # Returns the descriptor for the OperatorError enum
2536
2496
  #
2537
2497
  # @return [Google::Protobuf::EnumDescriptor] for the OperatorError enum
@@ -2556,6 +2516,14 @@ module Google
2556
2516
  Google::Ads::GoogleAds::V4::Errors::PaymentsAccountErrorEnum::PaymentsAccountError.descriptor
2557
2517
  end
2558
2518
 
2519
+ # Returns the descriptor for the PolicyFindingError enum
2520
+ #
2521
+ # @return [Google::Protobuf::EnumDescriptor] for the PolicyFindingError enum
2522
+ def self.policy_finding_error
2523
+ require "google/ads/google_ads/v4/errors/policy_finding_error_pb"
2524
+ Google::Ads::GoogleAds::V4::Errors::PolicyFindingErrorEnum::PolicyFindingError.descriptor
2525
+ end
2526
+
2559
2527
  # Returns the descriptor for the PolicyValidationParameterError enum
2560
2528
  #
2561
2529
  # @return [Google::Protobuf::EnumDescriptor] for the PolicyValidationParameterError enum
@@ -2564,6 +2532,14 @@ module Google
2564
2532
  Google::Ads::GoogleAds::V4::Errors::PolicyValidationParameterErrorEnum::PolicyValidationParameterError.descriptor
2565
2533
  end
2566
2534
 
2535
+ # Returns the descriptor for the PolicyViolationError enum
2536
+ #
2537
+ # @return [Google::Protobuf::EnumDescriptor] for the PolicyViolationError enum
2538
+ def self.policy_violation_error
2539
+ require "google/ads/google_ads/v4/errors/policy_violation_error_pb"
2540
+ Google::Ads::GoogleAds::V4::Errors::PolicyViolationErrorEnum::PolicyViolationError.descriptor
2541
+ end
2542
+
2567
2543
  # Returns the descriptor for the QueryError enum
2568
2544
  #
2569
2545
  # @return [Google::Protobuf::EnumDescriptor] for the QueryError enum
@@ -2596,6 +2572,14 @@ module Google
2596
2572
  Google::Ads::GoogleAds::V4::Errors::ReachPlanErrorEnum::ReachPlanError.descriptor
2597
2573
  end
2598
2574
 
2575
+ # Returns the descriptor for the RecommendationError enum
2576
+ #
2577
+ # @return [Google::Protobuf::EnumDescriptor] for the RecommendationError enum
2578
+ def self.recommendation_error
2579
+ require "google/ads/google_ads/v4/errors/recommendation_error_pb"
2580
+ Google::Ads::GoogleAds::V4::Errors::RecommendationErrorEnum::RecommendationError.descriptor
2581
+ end
2582
+
2599
2583
  # Returns the descriptor for the RegionCodeError enum
2600
2584
  #
2601
2585
  # @return [Google::Protobuf::EnumDescriptor] for the RegionCodeError enum
@@ -2628,12 +2612,12 @@ module Google
2628
2612
  Google::Ads::GoogleAds::V4::Errors::ResourceCountLimitExceededErrorEnum::ResourceCountLimitExceededError.descriptor
2629
2613
  end
2630
2614
 
2631
- # Returns the descriptor for the SharedSetError enum
2615
+ # Returns the descriptor for the SharedCriterionError enum
2632
2616
  #
2633
- # @return [Google::Protobuf::EnumDescriptor] for the SharedSetError enum
2634
- def self.shared_set_error
2635
- require "google/ads/google_ads/v4/errors/shared_set_error_pb"
2636
- Google::Ads::GoogleAds::V4::Errors::SharedSetErrorEnum::SharedSetError.descriptor
2617
+ # @return [Google::Protobuf::EnumDescriptor] for the SharedCriterionError enum
2618
+ def self.shared_criterion_error
2619
+ require "google/ads/google_ads/v4/errors/shared_criterion_error_pb"
2620
+ Google::Ads::GoogleAds::V4::Errors::SharedCriterionErrorEnum::SharedCriterionError.descriptor
2637
2621
  end
2638
2622
 
2639
2623
  # Returns the descriptor for the StringFormatError enum
@@ -2652,6 +2636,14 @@ module Google
2652
2636
  Google::Ads::GoogleAds::V4::Errors::StringLengthErrorEnum::StringLengthError.descriptor
2653
2637
  end
2654
2638
 
2639
+ # Returns the descriptor for the TimeZoneError enum
2640
+ #
2641
+ # @return [Google::Protobuf::EnumDescriptor] for the TimeZoneError enum
2642
+ def self.time_zone_error
2643
+ require "google/ads/google_ads/v4/errors/time_zone_error_pb"
2644
+ Google::Ads::GoogleAds::V4::Errors::TimeZoneErrorEnum::TimeZoneError.descriptor
2645
+ end
2646
+
2655
2647
  # Returns the descriptor for the UrlFieldError enum
2656
2648
  #
2657
2649
  # @return [Google::Protobuf::EnumDescriptor] for the UrlFieldError enum
@@ -2668,6 +2660,14 @@ module Google
2668
2660
  Google::Ads::GoogleAds::V4::Errors::UserDataErrorEnum::UserDataError.descriptor
2669
2661
  end
2670
2662
 
2663
+ # Returns the descriptor for the UserListError enum
2664
+ #
2665
+ # @return [Google::Protobuf::EnumDescriptor] for the UserListError enum
2666
+ def self.user_list_error
2667
+ require "google/ads/google_ads/v4/errors/user_list_error_pb"
2668
+ Google::Ads::GoogleAds::V4::Errors::UserListErrorEnum::UserListError.descriptor
2669
+ end
2670
+
2671
2671
  # Returns the descriptor for the YoutubeVideoRegistrationError enum
2672
2672
  #
2673
2673
  # @return [Google::Protobuf::EnumDescriptor] for the YoutubeVideoRegistrationError enum