├── .bundle └── config ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ ├── feature_request.md │ └── usage_question.md ├── .gitignore ├── .rubocop.yml ├── CHANGELOG.md ├── CODEOWNERS ├── CONTRIBUTING.md ├── Gemfile ├── LICENSE ├── Makefile ├── README.md ├── Rakefile ├── THIRD-PARTY-LICENCES.txt ├── codegen ├── .gitignore ├── .rspec ├── boilerplate.rb ├── factories.rb ├── spec │ ├── filters_spec.rb │ ├── spec_helper.rb │ ├── template_service_spec.rb │ └── tracepoints_spec.rb ├── src │ ├── filters.rb │ ├── rendering.rb │ ├── template_service.rb │ └── tracepoints.rb └── templates │ ├── api_versions.rb.erb │ ├── enums.rb.erb │ ├── factories.rb.erb │ ├── operations.rb.erb │ ├── path_lookup_util.rb.erb │ ├── resources.rb.erb │ ├── services.rb.erb │ └── version.rb.erb ├── examples ├── account_management │ ├── create_customer.rb │ ├── get_account_hierarchy.rb │ ├── get_change_details.rb │ ├── get_change_summary.rb │ ├── invite_user_with_access_role.rb │ ├── link_manager_to_client.rb │ ├── list_accessible_customers.rb │ ├── update_user_access.rb │ └── verify_advertiser_identity.rb ├── advanced_operations │ ├── add_ad_customizer.rb │ ├── add_ad_group_bid_modifier.rb │ ├── add_app_campaign.rb │ ├── add_bidding_data_exclusion.rb │ ├── add_bidding_seasonality_adjustment.rb │ ├── add_call_ad.rb │ ├── add_demand_gen_campaign.rb │ ├── add_display_upload_ad.rb │ ├── add_dynamic_page_feed_asset.rb │ ├── add_dynamic_search_ads.rb │ ├── add_performance_max_campaign.rb │ ├── add_responsive_search_ad_full.rb │ ├── add_smart_campaign.rb │ ├── create_and_attach_shared_keyword_set.rb │ ├── find_and_remove_criteria_from_shared_set.rb │ ├── get_ad_group_bid_modifiers.rb │ ├── use_cross_account_bidding_strategy.rb │ └── use_portfolio_bidding_strategy.rb ├── assets │ ├── add_call.rb │ ├── add_hotel_callout.rb │ ├── add_lead_form_asset.rb │ ├── add_prices.rb │ └── add_sitelinks.rb ├── authentication │ └── generate_user_credentials.rb ├── basic_operations │ ├── add_ad_groups.rb │ ├── add_campaigns.rb │ ├── get_campaigns.rb │ ├── get_responsive_search_ads.rb │ ├── pause_ad.rb │ ├── remove_campaign.rb │ ├── search_for_google_ads_fields.rb │ ├── update_ad_group.rb │ ├── update_campaign.rb │ └── update_responsive_search_ad.rb ├── billing │ ├── add_account_budget_proposal.rb │ ├── add_billing_setup.rb │ └── get_invoices.rb ├── campaign_management │ ├── add_campaign_labels.rb │ ├── add_complete_campaigns_using_batch_job.rb │ ├── create_experiment.rb │ ├── get_all_disapproved_ads.rb │ ├── set_ad_parameters.rb │ ├── update_campaign_criterion_bid_modifier.rb │ └── validate_ad.rb ├── error_handling │ ├── handle_keyword_policy_violations.rb │ ├── handle_partial_failure.rb │ ├── handle_rate_exceeded_error.rb │ └── handle_responsive_search_ad_policy_violations.rb ├── factories │ ├── various_factories_usage.rb │ └── various_factories_usage_explicit_version.rb ├── misc │ ├── campaign_report_to_csv.rb │ ├── set_custom_client_timeouts.rb │ └── upload_image_asset.rb ├── planning │ ├── forecast_reach.rb │ ├── generate_forecast_metrics.rb │ ├── generate_historical_metrics.rb │ ├── generate_keyword_ideas.rb │ └── get_ad_group_criterion_cpc_bid_simulations.rb ├── recommendations │ ├── detect_and_apply_recommendations.rb │ └── dismiss_recommendation.rb ├── remarketing │ ├── add_conversion_action.rb │ ├── add_conversion_based_user_list.rb │ ├── add_custom_audience.rb │ ├── add_customer_match_user_list.rb │ ├── add_dynamic_remarketing_asset.rb │ ├── add_flexible_rule_user_list.rb │ ├── add_logical_user_list.rb │ ├── add_merchant_center_dynamic_remarketing_campaign.rb │ ├── set_up_advanced_remarketing.rb │ ├── set_up_remarketing.rb │ ├── update_audience_target_restriction.rb │ ├── upload_call_conversion.rb │ ├── upload_conversion_adjustment.rb │ ├── upload_enhanced_conversions_for_leads.rb │ ├── upload_enhanced_conversions_for_web.rb │ ├── upload_offline_conversion.rb │ └── upload_store_sales_transactions.rb ├── reporting │ └── parallel_report_download.rb ├── shared │ └── error_handler.rb ├── shopping_ads │ ├── add_listing_scope.rb │ ├── add_performance_max_product_listing_group_tree.rb │ ├── add_performance_max_retail_campaign.rb │ ├── add_shopping_product_ad.rb │ ├── add_shopping_product_listing_group_tree.rb │ └── get_product_category_constants.rb ├── targeting │ ├── add_campaign_targeting_criteria.rb │ ├── add_customer_negative_criteria.rb │ ├── add_demographic_targeting_criteria.rb │ └── get_geo_target_constants_by_names.rb └── travel │ ├── add_hotel_ad.rb │ ├── add_hotel_ad_group_bid_modifiers.rb │ ├── add_hotel_listing_group_tree.rb │ ├── add_performance_max_for_travel_goals_campaign.rb │ └── add_things_to_do_ad.rb ├── google-ads-googleads.gemspec ├── google_ads_config.rb ├── lib └── google │ └── ads │ ├── google_ads.rb │ └── google_ads │ ├── api_versions.rb │ ├── config.rb │ ├── errors.rb │ ├── field_mask_util.rb │ ├── google_ads_client.rb │ ├── interceptors │ ├── error_interceptor.rb │ └── logging_interceptor.rb │ ├── lookup_util.rb │ ├── patches.rb │ ├── service_lookup.rb │ ├── service_wrapper.rb │ ├── status_decoder.rb │ ├── utils │ ├── build_path_lookup_class.rb │ ├── path_lookup_definer.rb │ ├── string_utils.rb │ ├── v19 │ │ └── path_lookup_util.rb │ ├── v20 │ │ └── path_lookup_util.rb │ ├── v21 │ │ └── path_lookup_util.rb │ └── v22 │ │ └── path_lookup_util.rb │ ├── v19 │ ├── common │ │ ├── ad_asset_pb.rb │ │ ├── ad_type_infos_pb.rb │ │ ├── asset_policy_pb.rb │ │ ├── asset_set_types_pb.rb │ │ ├── asset_types_pb.rb │ │ ├── asset_usage_pb.rb │ │ ├── audience_insights_attribute_pb.rb │ │ ├── audiences_pb.rb │ │ ├── bidding_pb.rb │ │ ├── click_location_pb.rb │ │ ├── consent_pb.rb │ │ ├── criteria_pb.rb │ │ ├── criterion_category_availability_pb.rb │ │ ├── custom_parameter_pb.rb │ │ ├── customizer_value_pb.rb │ │ ├── dates_pb.rb │ │ ├── extensions_pb.rb │ │ ├── feed_common_pb.rb │ │ ├── final_app_url_pb.rb │ │ ├── frequency_cap_pb.rb │ │ ├── keyword_plan_common_pb.rb │ │ ├── lifecycle_goals_pb.rb │ │ ├── local_services_pb.rb │ │ ├── metric_goal_pb.rb │ │ ├── metrics_pb.rb │ │ ├── offline_user_data_pb.rb │ │ ├── policy_pb.rb │ │ ├── policy_summary_pb.rb │ │ ├── real_time_bidding_setting_pb.rb │ │ ├── segments_pb.rb │ │ ├── simulation_pb.rb │ │ ├── tag_snippet_pb.rb │ │ ├── targeting_setting_pb.rb │ │ ├── text_label_pb.rb │ │ ├── url_collection_pb.rb │ │ ├── user_lists_pb.rb │ │ └── value_pb.rb │ ├── enums │ │ ├── access_invitation_status_pb.rb │ │ ├── access_reason_pb.rb │ │ ├── access_role_pb.rb │ │ ├── account_budget_proposal_status_pb.rb │ │ ├── account_budget_proposal_type_pb.rb │ │ ├── account_budget_status_pb.rb │ │ ├── account_link_status_pb.rb │ │ ├── ad_destination_type_pb.rb │ │ ├── ad_format_type_pb.rb │ │ ├── ad_group_ad_primary_status_pb.rb │ │ ├── ad_group_ad_primary_status_reason_pb.rb │ │ ├── ad_group_ad_rotation_mode_pb.rb │ │ ├── ad_group_ad_status_pb.rb │ │ ├── ad_group_criterion_approval_status_pb.rb │ │ ├── ad_group_criterion_primary_status_pb.rb │ │ ├── ad_group_criterion_primary_status_reason_pb.rb │ │ ├── ad_group_criterion_status_pb.rb │ │ ├── ad_group_primary_status_pb.rb │ │ ├── ad_group_primary_status_reason_pb.rb │ │ ├── ad_group_status_pb.rb │ │ ├── ad_group_type_pb.rb │ │ ├── ad_network_type_pb.rb │ │ ├── ad_serving_optimization_status_pb.rb │ │ ├── ad_strength_action_item_type_pb.rb │ │ ├── ad_strength_pb.rb │ │ ├── ad_type_pb.rb │ │ ├── advertising_channel_sub_type_pb.rb │ │ ├── advertising_channel_type_pb.rb │ │ ├── age_range_type_pb.rb │ │ ├── android_privacy_interaction_type_pb.rb │ │ ├── android_privacy_network_type_pb.rb │ │ ├── app_bidding_goal_pb.rb │ │ ├── app_campaign_app_store_pb.rb │ │ ├── app_campaign_bidding_strategy_goal_type_pb.rb │ │ ├── app_payment_model_type_pb.rb │ │ ├── app_url_operating_system_type_pb.rb │ │ ├── asset_automation_status_pb.rb │ │ ├── asset_automation_type_pb.rb │ │ ├── asset_coverage_video_aspect_ratio_requirement_pb.rb │ │ ├── asset_field_type_pb.rb │ │ ├── asset_group_primary_status_pb.rb │ │ ├── asset_group_primary_status_reason_pb.rb │ │ ├── asset_group_signal_approval_status_pb.rb │ │ ├── asset_group_status_pb.rb │ │ ├── asset_link_primary_status_pb.rb │ │ ├── asset_link_primary_status_reason_pb.rb │ │ ├── asset_link_status_pb.rb │ │ ├── asset_offline_evaluation_error_reasons_pb.rb │ │ ├── asset_performance_label_pb.rb │ │ ├── asset_set_asset_status_pb.rb │ │ ├── asset_set_link_status_pb.rb │ │ ├── asset_set_status_pb.rb │ │ ├── asset_set_type_pb.rb │ │ ├── asset_source_pb.rb │ │ ├── asset_type_pb.rb │ │ ├── async_action_status_pb.rb │ │ ├── attribution_model_pb.rb │ │ ├── audience_insights_dimension_pb.rb │ │ ├── audience_insights_marketing_objective_pb.rb │ │ ├── audience_scope_pb.rb │ │ ├── audience_status_pb.rb │ │ ├── batch_job_status_pb.rb │ │ ├── bid_modifier_source_pb.rb │ │ ├── bidding_source_pb.rb │ │ ├── bidding_strategy_status_pb.rb │ │ ├── bidding_strategy_system_status_pb.rb │ │ ├── bidding_strategy_type_pb.rb │ │ ├── billing_setup_status_pb.rb │ │ ├── brand_request_rejection_reason_pb.rb │ │ ├── brand_safety_suitability_pb.rb │ │ ├── brand_state_pb.rb │ │ ├── budget_campaign_association_status_pb.rb │ │ ├── budget_delivery_method_pb.rb │ │ ├── budget_period_pb.rb │ │ ├── budget_status_pb.rb │ │ ├── budget_type_pb.rb │ │ ├── business_message_call_to_action_type_pb.rb │ │ ├── business_message_provider_pb.rb │ │ ├── call_conversion_reporting_state_pb.rb │ │ ├── call_to_action_type_pb.rb │ │ ├── call_tracking_display_location_pb.rb │ │ ├── call_type_pb.rb │ │ ├── campaign_criterion_status_pb.rb │ │ ├── campaign_draft_status_pb.rb │ │ ├── campaign_experiment_type_pb.rb │ │ ├── campaign_group_status_pb.rb │ │ ├── campaign_keyword_match_type_pb.rb │ │ ├── campaign_primary_status_pb.rb │ │ ├── campaign_primary_status_reason_pb.rb │ │ ├── campaign_serving_status_pb.rb │ │ ├── campaign_shared_set_status_pb.rb │ │ ├── campaign_status_pb.rb │ │ ├── chain_relationship_type_pb.rb │ │ ├── change_client_type_pb.rb │ │ ├── change_event_resource_type_pb.rb │ │ ├── change_status_operation_pb.rb │ │ ├── change_status_resource_type_pb.rb │ │ ├── click_type_pb.rb │ │ ├── combined_audience_status_pb.rb │ │ ├── consent_status_pb.rb │ │ ├── content_label_type_pb.rb │ │ ├── conversion_action_category_pb.rb │ │ ├── conversion_action_counting_type_pb.rb │ │ ├── conversion_action_status_pb.rb │ │ ├── conversion_action_type_pb.rb │ │ ├── conversion_adjustment_type_pb.rb │ │ ├── conversion_attribution_event_type_pb.rb │ │ ├── conversion_custom_variable_status_pb.rb │ │ ├── conversion_customer_type_pb.rb │ │ ├── conversion_environment_enum_pb.rb │ │ ├── conversion_lag_bucket_pb.rb │ │ ├── conversion_or_adjustment_lag_bucket_pb.rb │ │ ├── conversion_origin_pb.rb │ │ ├── conversion_tracking_status_enum_pb.rb │ │ ├── conversion_value_rule_primary_dimension_pb.rb │ │ ├── conversion_value_rule_set_status_pb.rb │ │ ├── conversion_value_rule_status_pb.rb │ │ ├── converting_user_prior_engagement_type_and_ltv_bucket_pb.rb │ │ ├── criterion_category_channel_availability_mode_pb.rb │ │ ├── criterion_category_locale_availability_mode_pb.rb │ │ ├── criterion_system_serving_status_pb.rb │ │ ├── criterion_type_pb.rb │ │ ├── custom_audience_member_type_pb.rb │ │ ├── custom_audience_status_pb.rb │ │ ├── custom_audience_type_pb.rb │ │ ├── custom_conversion_goal_status_pb.rb │ │ ├── custom_interest_member_type_pb.rb │ │ ├── custom_interest_status_pb.rb │ │ ├── custom_interest_type_pb.rb │ │ ├── customer_acquisition_optimization_mode_pb.rb │ │ ├── customer_match_upload_key_type_pb.rb │ │ ├── customer_pay_per_conversion_eligibility_failure_reason_pb.rb │ │ ├── customer_status_pb.rb │ │ ├── customizer_attribute_status_pb.rb │ │ ├── customizer_attribute_type_pb.rb │ │ ├── customizer_value_status_pb.rb │ │ ├── data_driven_model_status_pb.rb │ │ ├── data_link_status_pb.rb │ │ ├── data_link_type_pb.rb │ │ ├── day_of_week_pb.rb │ │ ├── demand_gen_channel_config_pb.rb │ │ ├── demand_gen_channel_strategy_pb.rb │ │ ├── device_pb.rb │ │ ├── display_ad_format_setting_pb.rb │ │ ├── display_upload_product_type_pb.rb │ │ ├── distance_bucket_pb.rb │ │ ├── eu_political_advertising_status_pb.rb │ │ ├── experiment_metric_direction_pb.rb │ │ ├── experiment_metric_pb.rb │ │ ├── experiment_status_pb.rb │ │ ├── experiment_type_pb.rb │ │ ├── external_conversion_source_pb.rb │ │ ├── fixed_cpm_goal_pb.rb │ │ ├── fixed_cpm_target_frequency_time_unit_pb.rb │ │ ├── frequency_cap_event_type_pb.rb │ │ ├── frequency_cap_level_pb.rb │ │ ├── frequency_cap_time_unit_pb.rb │ │ ├── gender_type_pb.rb │ │ ├── geo_target_constant_status_pb.rb │ │ ├── geo_targeting_type_pb.rb │ │ ├── goal_config_level_pb.rb │ │ ├── google_ads_field_category_pb.rb │ │ ├── google_ads_field_data_type_pb.rb │ │ ├── google_voice_call_status_pb.rb │ │ ├── hotel_asset_suggestion_status_pb.rb │ │ ├── hotel_date_selection_type_pb.rb │ │ ├── hotel_price_bucket_pb.rb │ │ ├── hotel_rate_type_pb.rb │ │ ├── hotel_reconciliation_status_pb.rb │ │ ├── identity_verification_program_pb.rb │ │ ├── identity_verification_program_status_pb.rb │ │ ├── income_range_type_pb.rb │ │ ├── insights_knowledge_graph_entity_capabilities_pb.rb │ │ ├── insights_trend_pb.rb │ │ ├── interaction_event_type_pb.rb │ │ ├── interaction_type_pb.rb │ │ ├── invoice_type_pb.rb │ │ ├── keyword_match_type_pb.rb │ │ ├── keyword_plan_aggregate_metric_type_pb.rb │ │ ├── keyword_plan_competition_level_pb.rb │ │ ├── keyword_plan_concept_group_type_pb.rb │ │ ├── keyword_plan_forecast_interval_pb.rb │ │ ├── keyword_plan_keyword_annotation_pb.rb │ │ ├── keyword_plan_network_pb.rb │ │ ├── label_status_pb.rb │ │ ├── lead_form_call_to_action_type_pb.rb │ │ ├── lead_form_desired_intent_pb.rb │ │ ├── lead_form_field_user_input_type_pb.rb │ │ ├── lead_form_post_submit_call_to_action_type_pb.rb │ │ ├── legacy_app_install_ad_app_store_pb.rb │ │ ├── linked_account_type_pb.rb │ │ ├── linked_product_type_pb.rb │ │ ├── listing_group_filter_custom_attribute_index_pb.rb │ │ ├── listing_group_filter_listing_source_pb.rb │ │ ├── listing_group_filter_product_category_level_pb.rb │ │ ├── listing_group_filter_product_channel_pb.rb │ │ ├── listing_group_filter_product_condition_pb.rb │ │ ├── listing_group_filter_product_type_level_pb.rb │ │ ├── listing_group_filter_type_enum_pb.rb │ │ ├── listing_group_type_pb.rb │ │ ├── listing_type_pb.rb │ │ ├── local_services_business_registration_check_rejection_reason_pb.rb │ │ ├── local_services_business_registration_type_pb.rb │ │ ├── local_services_conversation_type_pb.rb │ │ ├── local_services_employee_status_pb.rb │ │ ├── local_services_employee_type_pb.rb │ │ ├── local_services_insurance_rejection_reason_pb.rb │ │ ├── local_services_lead_credit_issuance_decision_pb.rb │ │ ├── local_services_lead_credit_state_pb.rb │ │ ├── local_services_lead_status_pb.rb │ │ ├── local_services_lead_survey_answer_pb.rb │ │ ├── local_services_lead_survey_dissatisfied_reason_pb.rb │ │ ├── local_services_lead_survey_satisfied_reason_pb.rb │ │ ├── local_services_lead_type_pb.rb │ │ ├── local_services_license_rejection_reason_pb.rb │ │ ├── local_services_participant_type_pb.rb │ │ ├── local_services_verification_artifact_status_pb.rb │ │ ├── local_services_verification_artifact_type_pb.rb │ │ ├── local_services_verification_status_pb.rb │ │ ├── location_group_radius_units_pb.rb │ │ ├── location_ownership_type_pb.rb │ │ ├── location_source_type_pb.rb │ │ ├── location_string_filter_type_pb.rb │ │ ├── lookalike_expansion_level_pb.rb │ │ ├── manager_link_status_pb.rb │ │ ├── media_type_pb.rb │ │ ├── mime_type_pb.rb │ │ ├── minute_of_hour_pb.rb │ │ ├── mobile_app_vendor_pb.rb │ │ ├── mobile_device_type_pb.rb │ │ ├── month_of_year_pb.rb │ │ ├── negative_geo_target_type_pb.rb │ │ ├── offline_conversion_diagnostic_status_enum_pb.rb │ │ ├── offline_event_upload_client_enum_pb.rb │ │ ├── offline_user_data_job_failure_reason_pb.rb │ │ ├── offline_user_data_job_match_rate_range_pb.rb │ │ ├── offline_user_data_job_status_pb.rb │ │ ├── offline_user_data_job_type_pb.rb │ │ ├── operating_system_version_operator_type_pb.rb │ │ ├── optimization_goal_type_pb.rb │ │ ├── parental_status_type_pb.rb │ │ ├── payment_mode_pb.rb │ │ ├── performance_max_upgrade_status_pb.rb │ │ ├── placement_type_pb.rb │ │ ├── policy_approval_status_pb.rb │ │ ├── policy_review_status_pb.rb │ │ ├── policy_topic_entry_type_pb.rb │ │ ├── policy_topic_evidence_destination_mismatch_url_type_pb.rb │ │ ├── policy_topic_evidence_destination_not_working_device_pb.rb │ │ ├── policy_topic_evidence_destination_not_working_dns_error_type_pb.rb │ │ ├── positive_geo_target_type_pb.rb │ │ ├── price_extension_price_qualifier_pb.rb │ │ ├── price_extension_price_unit_pb.rb │ │ ├── price_extension_type_pb.rb │ │ ├── product_availability_pb.rb │ │ ├── product_category_level_pb.rb │ │ ├── product_category_state_pb.rb │ │ ├── product_channel_exclusivity_pb.rb │ │ ├── product_channel_pb.rb │ │ ├── product_condition_pb.rb │ │ ├── product_custom_attribute_index_pb.rb │ │ ├── product_issue_severity_pb.rb │ │ ├── product_link_invitation_status_pb.rb │ │ ├── product_status_pb.rb │ │ ├── product_type_level_pb.rb │ │ ├── promotion_extension_discount_modifier_pb.rb │ │ ├── promotion_extension_occasion_pb.rb │ │ ├── proximity_radius_units_pb.rb │ │ ├── quality_score_bucket_pb.rb │ │ ├── reach_plan_age_range_pb.rb │ │ ├── reach_plan_conversion_rate_model_pb.rb │ │ ├── reach_plan_network_pb.rb │ │ ├── reach_plan_surface_pb.rb │ │ ├── recommendation_subscription_status_pb.rb │ │ ├── recommendation_type_pb.rb │ │ ├── resource_change_operation_pb.rb │ │ ├── resource_limit_type_pb.rb │ │ ├── response_content_type_pb.rb │ │ ├── search_engine_results_page_type_pb.rb │ │ ├── search_term_match_type_pb.rb │ │ ├── search_term_targeting_status_pb.rb │ │ ├── seasonality_event_scope_pb.rb │ │ ├── seasonality_event_status_pb.rb │ │ ├── served_asset_field_type_pb.rb │ │ ├── shared_set_status_pb.rb │ │ ├── shared_set_type_pb.rb │ │ ├── shopping_add_products_to_campaign_recommendation_enum_pb.rb │ │ ├── simulation_modification_method_pb.rb │ │ ├── simulation_type_pb.rb │ │ ├── sk_ad_network_ad_event_type_pb.rb │ │ ├── sk_ad_network_attribution_credit_pb.rb │ │ ├── sk_ad_network_coarse_conversion_value_pb.rb │ │ ├── sk_ad_network_source_type_pb.rb │ │ ├── sk_ad_network_user_type_pb.rb │ │ ├── slot_pb.rb │ │ ├── smart_campaign_not_eligible_reason_pb.rb │ │ ├── smart_campaign_status_pb.rb │ │ ├── spending_limit_type_pb.rb │ │ ├── summary_row_setting_pb.rb │ │ ├── system_managed_entity_source_pb.rb │ │ ├── target_cpa_opt_in_recommendation_goal_pb.rb │ │ ├── target_frequency_time_unit_pb.rb │ │ ├── target_impression_share_location_pb.rb │ │ ├── targeting_dimension_pb.rb │ │ ├── time_type_pb.rb │ │ ├── tracking_code_page_format_pb.rb │ │ ├── tracking_code_type_pb.rb │ │ ├── user_identifier_source_pb.rb │ │ ├── user_interest_taxonomy_type_pb.rb │ │ ├── user_list_access_status_pb.rb │ │ ├── user_list_closing_reason_pb.rb │ │ ├── user_list_crm_data_source_type_pb.rb │ │ ├── user_list_customer_type_category_pb.rb │ │ ├── user_list_date_rule_item_operator_pb.rb │ │ ├── user_list_flexible_rule_operator_pb.rb │ │ ├── user_list_logical_rule_operator_pb.rb │ │ ├── user_list_membership_status_pb.rb │ │ ├── user_list_number_rule_item_operator_pb.rb │ │ ├── user_list_prepopulation_status_pb.rb │ │ ├── user_list_rule_type_pb.rb │ │ ├── user_list_size_range_pb.rb │ │ ├── user_list_string_rule_item_operator_pb.rb │ │ ├── user_list_type_pb.rb │ │ ├── value_rule_device_type_pb.rb │ │ ├── value_rule_geo_location_match_type_pb.rb │ │ ├── value_rule_operation_pb.rb │ │ ├── value_rule_set_attachment_type_pb.rb │ │ ├── value_rule_set_dimension_pb.rb │ │ ├── vanity_pharma_display_url_mode_pb.rb │ │ ├── vanity_pharma_text_pb.rb │ │ ├── video_thumbnail_pb.rb │ │ ├── webpage_condition_operand_pb.rb │ │ └── webpage_condition_operator_pb.rb │ ├── errors │ │ ├── access_invitation_error_pb.rb │ │ ├── account_budget_proposal_error_pb.rb │ │ ├── account_link_error_pb.rb │ │ ├── ad_customizer_error_pb.rb │ │ ├── ad_error_pb.rb │ │ ├── ad_group_ad_error_pb.rb │ │ ├── ad_group_bid_modifier_error_pb.rb │ │ ├── ad_group_criterion_customizer_error_pb.rb │ │ ├── ad_group_criterion_error_pb.rb │ │ ├── ad_group_customizer_error_pb.rb │ │ ├── ad_group_error_pb.rb │ │ ├── ad_group_feed_error_pb.rb │ │ ├── ad_parameter_error_pb.rb │ │ ├── ad_sharing_error_pb.rb │ │ ├── adx_error_pb.rb │ │ ├── asset_error_pb.rb │ │ ├── asset_group_asset_error_pb.rb │ │ ├── asset_group_error_pb.rb │ │ ├── asset_group_listing_group_filter_error_pb.rb │ │ ├── asset_group_signal_error_pb.rb │ │ ├── asset_link_error_pb.rb │ │ ├── asset_set_asset_error_pb.rb │ │ ├── asset_set_error_pb.rb │ │ ├── asset_set_link_error_pb.rb │ │ ├── audience_error_pb.rb │ │ ├── audience_insights_error_pb.rb │ │ ├── authentication_error_pb.rb │ │ ├── authorization_error_pb.rb │ │ ├── automatically_created_asset_removal_error_pb.rb │ │ ├── batch_job_error_pb.rb │ │ ├── bidding_error_pb.rb │ │ ├── bidding_strategy_error_pb.rb │ │ ├── billing_setup_error_pb.rb │ │ ├── brand_guidelines_migration_error_pb.rb │ │ ├── campaign_budget_error_pb.rb │ │ ├── campaign_conversion_goal_error_pb.rb │ │ ├── campaign_criterion_error_pb.rb │ │ ├── campaign_customizer_error_pb.rb │ │ ├── campaign_draft_error_pb.rb │ │ ├── campaign_error_pb.rb │ │ ├── campaign_experiment_error_pb.rb │ │ ├── campaign_feed_error_pb.rb │ │ ├── campaign_lifecycle_goal_error_pb.rb │ │ ├── campaign_shared_set_error_pb.rb │ │ ├── change_event_error_pb.rb │ │ ├── change_status_error_pb.rb │ │ ├── collection_size_error_pb.rb │ │ ├── context_error_pb.rb │ │ ├── conversion_action_error_pb.rb │ │ ├── conversion_adjustment_upload_error_pb.rb │ │ ├── conversion_custom_variable_error_pb.rb │ │ ├── conversion_goal_campaign_config_error_pb.rb │ │ ├── conversion_upload_error_pb.rb │ │ ├── conversion_value_rule_error_pb.rb │ │ ├── conversion_value_rule_set_error_pb.rb │ │ ├── country_code_error_pb.rb │ │ ├── criterion_error_pb.rb │ │ ├── currency_code_error_pb.rb │ │ ├── currency_error_pb.rb │ │ ├── custom_audience_error_pb.rb │ │ ├── custom_conversion_goal_error_pb.rb │ │ ├── custom_interest_error_pb.rb │ │ ├── customer_client_link_error_pb.rb │ │ ├── customer_customizer_error_pb.rb │ │ ├── customer_error_pb.rb │ │ ├── customer_feed_error_pb.rb │ │ ├── customer_lifecycle_goal_error_pb.rb │ │ ├── customer_manager_link_error_pb.rb │ │ ├── customer_sk_ad_network_conversion_value_schema_error_pb.rb │ │ ├── customer_user_access_error_pb.rb │ │ ├── customizer_attribute_error_pb.rb │ │ ├── data_link_error_pb.rb │ │ ├── database_error_pb.rb │ │ ├── date_error_pb.rb │ │ ├── date_range_error_pb.rb │ │ ├── distinct_error_pb.rb │ │ ├── enum_error_pb.rb │ │ ├── errors_pb.rb │ │ ├── experiment_arm_error_pb.rb │ │ ├── experiment_error_pb.rb │ │ ├── extension_feed_item_error_pb.rb │ │ ├── extension_setting_error_pb.rb │ │ ├── feed_attribute_reference_error_pb.rb │ │ ├── feed_error_pb.rb │ │ ├── feed_item_error_pb.rb │ │ ├── feed_item_set_error_pb.rb │ │ ├── feed_item_set_link_error_pb.rb │ │ ├── feed_item_target_error_pb.rb │ │ ├── feed_item_validation_error_pb.rb │ │ ├── feed_mapping_error_pb.rb │ │ ├── field_error_pb.rb │ │ ├── field_mask_error_pb.rb │ │ ├── function_error_pb.rb │ │ ├── function_parsing_error_pb.rb │ │ ├── geo_target_constant_suggestion_error_pb.rb │ │ ├── header_error_pb.rb │ │ ├── id_error_pb.rb │ │ ├── identity_verification_error_pb.rb │ │ ├── image_error_pb.rb │ │ ├── internal_error_pb.rb │ │ ├── invoice_error_pb.rb │ │ ├── keyword_plan_ad_group_error_pb.rb │ │ ├── keyword_plan_ad_group_keyword_error_pb.rb │ │ ├── keyword_plan_campaign_error_pb.rb │ │ ├── keyword_plan_campaign_keyword_error_pb.rb │ │ ├── keyword_plan_error_pb.rb │ │ ├── keyword_plan_idea_error_pb.rb │ │ ├── label_error_pb.rb │ │ ├── language_code_error_pb.rb │ │ ├── list_operation_error_pb.rb │ │ ├── manager_link_error_pb.rb │ │ ├── media_bundle_error_pb.rb │ │ ├── media_file_error_pb.rb │ │ ├── media_upload_error_pb.rb │ │ ├── merchant_center_error_pb.rb │ │ ├── multiplier_error_pb.rb │ │ ├── mutate_error_pb.rb │ │ ├── new_resource_creation_error_pb.rb │ │ ├── not_allowlisted_error_pb.rb │ │ ├── not_empty_error_pb.rb │ │ ├── null_error_pb.rb │ │ ├── offline_user_data_job_error_pb.rb │ │ ├── operation_access_denied_error_pb.rb │ │ ├── operator_error_pb.rb │ │ ├── partial_failure_error_pb.rb │ │ ├── payments_account_error_pb.rb │ │ ├── policy_finding_error_pb.rb │ │ ├── policy_validation_parameter_error_pb.rb │ │ ├── policy_violation_error_pb.rb │ │ ├── product_link_error_pb.rb │ │ ├── product_link_invitation_error_pb.rb │ │ ├── query_error_pb.rb │ │ ├── quota_error_pb.rb │ │ ├── range_error_pb.rb │ │ ├── reach_plan_error_pb.rb │ │ ├── recommendation_error_pb.rb │ │ ├── recommendation_subscription_error_pb.rb │ │ ├── region_code_error_pb.rb │ │ ├── request_error_pb.rb │ │ ├── resource_access_denied_error_pb.rb │ │ ├── resource_count_limit_exceeded_error_pb.rb │ │ ├── search_term_insight_error_pb.rb │ │ ├── setting_error_pb.rb │ │ ├── shareable_preview_error_pb.rb │ │ ├── shared_criterion_error_pb.rb │ │ ├── shared_set_error_pb.rb │ │ ├── shopping_product_error_pb.rb │ │ ├── size_limit_error_pb.rb │ │ ├── smart_campaign_error_pb.rb │ │ ├── string_format_error_pb.rb │ │ ├── string_length_error_pb.rb │ │ ├── third_party_app_analytics_link_error_pb.rb │ │ ├── time_zone_error_pb.rb │ │ ├── url_field_error_pb.rb │ │ ├── user_data_error_pb.rb │ │ ├── user_list_customer_type_error_pb.rb │ │ ├── user_list_error_pb.rb │ │ ├── video_campaign_error_pb.rb │ │ └── youtube_video_registration_error_pb.rb │ ├── resources │ │ ├── accessible_bidding_strategy_pb.rb │ │ ├── account_budget_pb.rb │ │ ├── account_budget_proposal_pb.rb │ │ ├── account_link_pb.rb │ │ ├── ad_group_ad_asset_combination_view_pb.rb │ │ ├── ad_group_ad_asset_view_pb.rb │ │ ├── ad_group_ad_label_pb.rb │ │ ├── ad_group_ad_pb.rb │ │ ├── ad_group_asset_pb.rb │ │ ├── ad_group_asset_set_pb.rb │ │ ├── ad_group_audience_view_pb.rb │ │ ├── ad_group_bid_modifier_pb.rb │ │ ├── ad_group_criterion_customizer_pb.rb │ │ ├── ad_group_criterion_label_pb.rb │ │ ├── ad_group_criterion_pb.rb │ │ ├── ad_group_criterion_simulation_pb.rb │ │ ├── ad_group_customizer_pb.rb │ │ ├── ad_group_label_pb.rb │ │ ├── ad_group_pb.rb │ │ ├── ad_group_simulation_pb.rb │ │ ├── ad_parameter_pb.rb │ │ ├── ad_pb.rb │ │ ├── ad_schedule_view_pb.rb │ │ ├── age_range_view_pb.rb │ │ ├── android_privacy_shared_key_google_ad_group_pb.rb │ │ ├── android_privacy_shared_key_google_campaign_pb.rb │ │ ├── android_privacy_shared_key_google_network_type_pb.rb │ │ ├── asset_field_type_view_pb.rb │ │ ├── asset_group_asset_pb.rb │ │ ├── asset_group_listing_group_filter_pb.rb │ │ ├── asset_group_pb.rb │ │ ├── asset_group_product_group_view_pb.rb │ │ ├── asset_group_signal_pb.rb │ │ ├── asset_group_top_combination_view_pb.rb │ │ ├── asset_pb.rb │ │ ├── asset_set_asset_pb.rb │ │ ├── asset_set_pb.rb │ │ ├── asset_set_type_view_pb.rb │ │ ├── audience_pb.rb │ │ ├── batch_job_pb.rb │ │ ├── bidding_data_exclusion_pb.rb │ │ ├── bidding_seasonality_adjustment_pb.rb │ │ ├── bidding_strategy_pb.rb │ │ ├── bidding_strategy_simulation_pb.rb │ │ ├── billing_setup_pb.rb │ │ ├── call_view_pb.rb │ │ ├── campaign_aggregate_asset_view_pb.rb │ │ ├── campaign_asset_pb.rb │ │ ├── campaign_asset_set_pb.rb │ │ ├── campaign_audience_view_pb.rb │ │ ├── campaign_bid_modifier_pb.rb │ │ ├── campaign_budget_pb.rb │ │ ├── campaign_conversion_goal_pb.rb │ │ ├── campaign_criterion_pb.rb │ │ ├── campaign_customizer_pb.rb │ │ ├── campaign_draft_pb.rb │ │ ├── campaign_group_pb.rb │ │ ├── campaign_label_pb.rb │ │ ├── campaign_lifecycle_goal_pb.rb │ │ ├── campaign_pb.rb │ │ ├── campaign_search_term_insight_pb.rb │ │ ├── campaign_shared_set_pb.rb │ │ ├── campaign_simulation_pb.rb │ │ ├── carrier_constant_pb.rb │ │ ├── change_event_pb.rb │ │ ├── change_status_pb.rb │ │ ├── channel_aggregate_asset_view_pb.rb │ │ ├── click_view_pb.rb │ │ ├── combined_audience_pb.rb │ │ ├── content_criterion_view_pb.rb │ │ ├── conversion_action_pb.rb │ │ ├── conversion_custom_variable_pb.rb │ │ ├── conversion_goal_campaign_config_pb.rb │ │ ├── conversion_value_rule_pb.rb │ │ ├── conversion_value_rule_set_pb.rb │ │ ├── currency_constant_pb.rb │ │ ├── custom_audience_pb.rb │ │ ├── custom_conversion_goal_pb.rb │ │ ├── custom_interest_pb.rb │ │ ├── customer_asset_pb.rb │ │ ├── customer_asset_set_pb.rb │ │ ├── customer_client_link_pb.rb │ │ ├── customer_client_pb.rb │ │ ├── customer_conversion_goal_pb.rb │ │ ├── customer_customizer_pb.rb │ │ ├── customer_label_pb.rb │ │ ├── customer_lifecycle_goal_pb.rb │ │ ├── customer_manager_link_pb.rb │ │ ├── customer_negative_criterion_pb.rb │ │ ├── customer_pb.rb │ │ ├── customer_search_term_insight_pb.rb │ │ ├── customer_sk_ad_network_conversion_value_schema_pb.rb │ │ ├── customer_user_access_invitation_pb.rb │ │ ├── customer_user_access_pb.rb │ │ ├── customizer_attribute_pb.rb │ │ ├── data_link_pb.rb │ │ ├── detail_placement_view_pb.rb │ │ ├── detailed_demographic_pb.rb │ │ ├── display_keyword_view_pb.rb │ │ ├── distance_view_pb.rb │ │ ├── domain_category_pb.rb │ │ ├── dynamic_search_ads_search_term_view_pb.rb │ │ ├── expanded_landing_page_view_pb.rb │ │ ├── experiment_arm_pb.rb │ │ ├── experiment_pb.rb │ │ ├── gender_view_pb.rb │ │ ├── geo_target_constant_pb.rb │ │ ├── geographic_view_pb.rb │ │ ├── google_ads_field_pb.rb │ │ ├── group_placement_view_pb.rb │ │ ├── hotel_group_view_pb.rb │ │ ├── hotel_performance_view_pb.rb │ │ ├── hotel_reconciliation_pb.rb │ │ ├── income_range_view_pb.rb │ │ ├── invoice_pb.rb │ │ ├── keyword_plan_ad_group_keyword_pb.rb │ │ ├── keyword_plan_ad_group_pb.rb │ │ ├── keyword_plan_campaign_keyword_pb.rb │ │ ├── keyword_plan_campaign_pb.rb │ │ ├── keyword_plan_pb.rb │ │ ├── keyword_theme_constant_pb.rb │ │ ├── keyword_view_pb.rb │ │ ├── label_pb.rb │ │ ├── landing_page_view_pb.rb │ │ ├── language_constant_pb.rb │ │ ├── lead_form_submission_data_pb.rb │ │ ├── life_event_pb.rb │ │ ├── local_services_employee_pb.rb │ │ ├── local_services_lead_conversation_pb.rb │ │ ├── local_services_lead_pb.rb │ │ ├── local_services_verification_artifact_pb.rb │ │ ├── location_view_pb.rb │ │ ├── managed_placement_view_pb.rb │ │ ├── media_file_pb.rb │ │ ├── mobile_app_category_constant_pb.rb │ │ ├── mobile_device_constant_pb.rb │ │ ├── offline_conversion_upload_client_summary_pb.rb │ │ ├── offline_conversion_upload_conversion_action_summary_pb.rb │ │ ├── offline_user_data_job_pb.rb │ │ ├── operating_system_version_constant_pb.rb │ │ ├── paid_organic_search_term_view_pb.rb │ │ ├── parental_status_view_pb.rb │ │ ├── payments_account_pb.rb │ │ ├── per_store_view_pb.rb │ │ ├── performance_max_placement_view_pb.rb │ │ ├── product_category_constant_pb.rb │ │ ├── product_group_view_pb.rb │ │ ├── product_link_invitation_pb.rb │ │ ├── product_link_pb.rb │ │ ├── qualifying_question_pb.rb │ │ ├── recommendation_pb.rb │ │ ├── recommendation_subscription_pb.rb │ │ ├── remarketing_action_pb.rb │ │ ├── search_term_view_pb.rb │ │ ├── shared_criterion_pb.rb │ │ ├── shared_set_pb.rb │ │ ├── shopping_performance_view_pb.rb │ │ ├── shopping_product_pb.rb │ │ ├── smart_campaign_search_term_view_pb.rb │ │ ├── smart_campaign_setting_pb.rb │ │ ├── third_party_app_analytics_link_pb.rb │ │ ├── topic_constant_pb.rb │ │ ├── topic_view_pb.rb │ │ ├── travel_activity_group_view_pb.rb │ │ ├── travel_activity_performance_view_pb.rb │ │ ├── user_interest_pb.rb │ │ ├── user_list_customer_type_pb.rb │ │ ├── user_list_pb.rb │ │ ├── user_location_view_pb.rb │ │ ├── video_pb.rb │ │ └── webpage_view_pb.rb │ ├── services.rb │ └── services │ │ ├── account_budget_proposal_service.rb │ │ ├── account_budget_proposal_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── account_budget_proposal_service_pb.rb │ │ ├── account_budget_proposal_service_services_pb.rb │ │ ├── account_link_service.rb │ │ ├── account_link_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── account_link_service_pb.rb │ │ ├── account_link_service_services_pb.rb │ │ ├── ad_group_ad_label_service.rb │ │ ├── ad_group_ad_label_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── ad_group_ad_label_service_pb.rb │ │ ├── ad_group_ad_label_service_services_pb.rb │ │ ├── ad_group_ad_service.rb │ │ ├── ad_group_ad_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── ad_group_ad_service_pb.rb │ │ ├── ad_group_ad_service_services_pb.rb │ │ ├── ad_group_asset_service.rb │ │ ├── ad_group_asset_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── ad_group_asset_service_pb.rb │ │ ├── ad_group_asset_service_services_pb.rb │ │ ├── ad_group_asset_set_service.rb │ │ ├── ad_group_asset_set_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── ad_group_asset_set_service_pb.rb │ │ ├── ad_group_asset_set_service_services_pb.rb │ │ ├── ad_group_bid_modifier_service.rb │ │ ├── ad_group_bid_modifier_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── ad_group_bid_modifier_service_pb.rb │ │ ├── ad_group_bid_modifier_service_services_pb.rb │ │ ├── ad_group_criterion_customizer_service.rb │ │ ├── ad_group_criterion_customizer_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── ad_group_criterion_customizer_service_pb.rb │ │ ├── ad_group_criterion_customizer_service_services_pb.rb │ │ ├── ad_group_criterion_label_service.rb │ │ ├── ad_group_criterion_label_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── ad_group_criterion_label_service_pb.rb │ │ ├── ad_group_criterion_label_service_services_pb.rb │ │ ├── ad_group_criterion_service.rb │ │ ├── ad_group_criterion_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── ad_group_criterion_service_pb.rb │ │ ├── ad_group_criterion_service_services_pb.rb │ │ ├── ad_group_customizer_service.rb │ │ ├── ad_group_customizer_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── ad_group_customizer_service_pb.rb │ │ ├── ad_group_customizer_service_services_pb.rb │ │ ├── ad_group_label_service.rb │ │ ├── ad_group_label_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── ad_group_label_service_pb.rb │ │ ├── ad_group_label_service_services_pb.rb │ │ ├── ad_group_service.rb │ │ ├── ad_group_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── ad_group_service_pb.rb │ │ ├── ad_group_service_services_pb.rb │ │ ├── ad_parameter_service.rb │ │ ├── ad_parameter_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── ad_parameter_service_pb.rb │ │ ├── ad_parameter_service_services_pb.rb │ │ ├── ad_service.rb │ │ ├── ad_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── ad_service_pb.rb │ │ ├── ad_service_services_pb.rb │ │ ├── asset_group_asset_service.rb │ │ ├── asset_group_asset_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── asset_group_asset_service_pb.rb │ │ ├── asset_group_asset_service_services_pb.rb │ │ ├── asset_group_listing_group_filter_service.rb │ │ ├── asset_group_listing_group_filter_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── asset_group_listing_group_filter_service_pb.rb │ │ ├── asset_group_listing_group_filter_service_services_pb.rb │ │ ├── asset_group_service.rb │ │ ├── asset_group_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── asset_group_service_pb.rb │ │ ├── asset_group_service_services_pb.rb │ │ ├── asset_group_signal_service.rb │ │ ├── asset_group_signal_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── asset_group_signal_service_pb.rb │ │ ├── asset_group_signal_service_services_pb.rb │ │ ├── asset_service.rb │ │ ├── asset_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── asset_service_pb.rb │ │ ├── asset_service_services_pb.rb │ │ ├── asset_set_asset_service.rb │ │ ├── asset_set_asset_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── asset_set_asset_service_pb.rb │ │ ├── asset_set_asset_service_services_pb.rb │ │ ├── asset_set_service.rb │ │ ├── asset_set_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── asset_set_service_pb.rb │ │ ├── asset_set_service_services_pb.rb │ │ ├── audience_insights_service.rb │ │ ├── audience_insights_service │ │ ├── client.rb │ │ └── credentials.rb │ │ ├── audience_insights_service_pb.rb │ │ ├── audience_insights_service_services_pb.rb │ │ ├── audience_service.rb │ │ ├── audience_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── audience_service_pb.rb │ │ ├── audience_service_services_pb.rb │ │ ├── batch_job_service.rb │ │ ├── batch_job_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ ├── operations.rb │ │ └── paths.rb │ │ ├── batch_job_service_pb.rb │ │ ├── batch_job_service_services_pb.rb │ │ ├── bidding_data_exclusion_service.rb │ │ ├── bidding_data_exclusion_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── bidding_data_exclusion_service_pb.rb │ │ ├── bidding_data_exclusion_service_services_pb.rb │ │ ├── bidding_seasonality_adjustment_service.rb │ │ ├── bidding_seasonality_adjustment_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── bidding_seasonality_adjustment_service_pb.rb │ │ ├── bidding_seasonality_adjustment_service_services_pb.rb │ │ ├── bidding_strategy_service.rb │ │ ├── bidding_strategy_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── bidding_strategy_service_pb.rb │ │ ├── bidding_strategy_service_services_pb.rb │ │ ├── billing_setup_service.rb │ │ ├── billing_setup_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── billing_setup_service_pb.rb │ │ ├── billing_setup_service_services_pb.rb │ │ ├── brand_suggestion_service.rb │ │ ├── brand_suggestion_service │ │ ├── client.rb │ │ └── credentials.rb │ │ ├── brand_suggestion_service_pb.rb │ │ ├── brand_suggestion_service_services_pb.rb │ │ ├── campaign_asset_service.rb │ │ ├── campaign_asset_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── campaign_asset_service_pb.rb │ │ ├── campaign_asset_service_services_pb.rb │ │ ├── campaign_asset_set_service.rb │ │ ├── campaign_asset_set_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── campaign_asset_set_service_pb.rb │ │ ├── campaign_asset_set_service_services_pb.rb │ │ ├── campaign_bid_modifier_service.rb │ │ ├── campaign_bid_modifier_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── campaign_bid_modifier_service_pb.rb │ │ ├── campaign_bid_modifier_service_services_pb.rb │ │ ├── campaign_budget_service.rb │ │ ├── campaign_budget_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── campaign_budget_service_pb.rb │ │ ├── campaign_budget_service_services_pb.rb │ │ ├── campaign_conversion_goal_service.rb │ │ ├── campaign_conversion_goal_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── campaign_conversion_goal_service_pb.rb │ │ ├── campaign_conversion_goal_service_services_pb.rb │ │ ├── campaign_criterion_service.rb │ │ ├── campaign_criterion_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── campaign_criterion_service_pb.rb │ │ ├── campaign_criterion_service_services_pb.rb │ │ ├── campaign_customizer_service.rb │ │ ├── campaign_customizer_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── campaign_customizer_service_pb.rb │ │ ├── campaign_customizer_service_services_pb.rb │ │ ├── campaign_draft_service.rb │ │ ├── campaign_draft_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ ├── operations.rb │ │ └── paths.rb │ │ ├── campaign_draft_service_pb.rb │ │ ├── campaign_draft_service_services_pb.rb │ │ ├── campaign_group_service.rb │ │ ├── campaign_group_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── campaign_group_service_pb.rb │ │ ├── campaign_group_service_services_pb.rb │ │ ├── campaign_label_service.rb │ │ ├── campaign_label_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── campaign_label_service_pb.rb │ │ ├── campaign_label_service_services_pb.rb │ │ ├── campaign_lifecycle_goal_service.rb │ │ ├── campaign_lifecycle_goal_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── campaign_lifecycle_goal_service_pb.rb │ │ ├── campaign_lifecycle_goal_service_services_pb.rb │ │ ├── campaign_service.rb │ │ ├── campaign_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── campaign_service_pb.rb │ │ ├── campaign_service_services_pb.rb │ │ ├── campaign_shared_set_service.rb │ │ ├── campaign_shared_set_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── campaign_shared_set_service_pb.rb │ │ ├── campaign_shared_set_service_services_pb.rb │ │ ├── content_creator_insights_service.rb │ │ ├── content_creator_insights_service │ │ ├── client.rb │ │ └── credentials.rb │ │ ├── content_creator_insights_service_pb.rb │ │ ├── content_creator_insights_service_services_pb.rb │ │ ├── conversion_action_service.rb │ │ ├── conversion_action_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── conversion_action_service_pb.rb │ │ ├── conversion_action_service_services_pb.rb │ │ ├── conversion_adjustment_upload_service.rb │ │ ├── conversion_adjustment_upload_service │ │ ├── client.rb │ │ └── credentials.rb │ │ ├── conversion_adjustment_upload_service_pb.rb │ │ ├── conversion_adjustment_upload_service_services_pb.rb │ │ ├── conversion_custom_variable_service.rb │ │ ├── conversion_custom_variable_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── conversion_custom_variable_service_pb.rb │ │ ├── conversion_custom_variable_service_services_pb.rb │ │ ├── conversion_goal_campaign_config_service.rb │ │ ├── conversion_goal_campaign_config_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── conversion_goal_campaign_config_service_pb.rb │ │ ├── conversion_goal_campaign_config_service_services_pb.rb │ │ ├── conversion_upload_service.rb │ │ ├── conversion_upload_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── conversion_upload_service_pb.rb │ │ ├── conversion_upload_service_services_pb.rb │ │ ├── conversion_value_rule_service.rb │ │ ├── conversion_value_rule_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── conversion_value_rule_service_pb.rb │ │ ├── conversion_value_rule_service_services_pb.rb │ │ ├── conversion_value_rule_set_service.rb │ │ ├── conversion_value_rule_set_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── conversion_value_rule_set_service_pb.rb │ │ ├── conversion_value_rule_set_service_services_pb.rb │ │ ├── custom_audience_service.rb │ │ ├── custom_audience_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── custom_audience_service_pb.rb │ │ ├── custom_audience_service_services_pb.rb │ │ ├── custom_conversion_goal_service.rb │ │ ├── custom_conversion_goal_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── custom_conversion_goal_service_pb.rb │ │ ├── custom_conversion_goal_service_services_pb.rb │ │ ├── custom_interest_service.rb │ │ ├── custom_interest_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── custom_interest_service_pb.rb │ │ ├── custom_interest_service_services_pb.rb │ │ ├── customer_asset_service.rb │ │ ├── customer_asset_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── customer_asset_service_pb.rb │ │ ├── customer_asset_service_services_pb.rb │ │ ├── customer_asset_set_service.rb │ │ ├── customer_asset_set_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── customer_asset_set_service_pb.rb │ │ ├── customer_asset_set_service_services_pb.rb │ │ ├── customer_client_link_service.rb │ │ ├── customer_client_link_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── customer_client_link_service_pb.rb │ │ ├── customer_client_link_service_services_pb.rb │ │ ├── customer_conversion_goal_service.rb │ │ ├── customer_conversion_goal_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── customer_conversion_goal_service_pb.rb │ │ ├── customer_conversion_goal_service_services_pb.rb │ │ ├── customer_customizer_service.rb │ │ ├── customer_customizer_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── customer_customizer_service_pb.rb │ │ ├── customer_customizer_service_services_pb.rb │ │ ├── customer_label_service.rb │ │ ├── customer_label_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── customer_label_service_pb.rb │ │ ├── customer_label_service_services_pb.rb │ │ ├── customer_lifecycle_goal_service.rb │ │ ├── customer_lifecycle_goal_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── customer_lifecycle_goal_service_pb.rb │ │ ├── customer_lifecycle_goal_service_services_pb.rb │ │ ├── customer_manager_link_service.rb │ │ ├── customer_manager_link_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── customer_manager_link_service_pb.rb │ │ ├── customer_manager_link_service_services_pb.rb │ │ ├── customer_negative_criterion_service.rb │ │ ├── customer_negative_criterion_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── customer_negative_criterion_service_pb.rb │ │ ├── customer_negative_criterion_service_services_pb.rb │ │ ├── customer_service.rb │ │ ├── customer_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── customer_service_pb.rb │ │ ├── customer_service_services_pb.rb │ │ ├── customer_sk_ad_network_conversion_value_schema_service.rb │ │ ├── customer_sk_ad_network_conversion_value_schema_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── customer_sk_ad_network_conversion_value_schema_service_pb.rb │ │ ├── customer_sk_ad_network_conversion_value_schema_service_services_pb.rb │ │ ├── customer_user_access_invitation_service.rb │ │ ├── customer_user_access_invitation_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── customer_user_access_invitation_service_pb.rb │ │ ├── customer_user_access_invitation_service_services_pb.rb │ │ ├── customer_user_access_service.rb │ │ ├── customer_user_access_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── customer_user_access_service_pb.rb │ │ ├── customer_user_access_service_services_pb.rb │ │ ├── customizer_attribute_service.rb │ │ ├── customizer_attribute_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── customizer_attribute_service_pb.rb │ │ ├── customizer_attribute_service_services_pb.rb │ │ ├── data_link_service.rb │ │ ├── data_link_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── data_link_service_pb.rb │ │ ├── data_link_service_services_pb.rb │ │ ├── experiment_arm_service.rb │ │ ├── experiment_arm_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── experiment_arm_service_pb.rb │ │ ├── experiment_arm_service_services_pb.rb │ │ ├── experiment_service.rb │ │ ├── experiment_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ ├── operations.rb │ │ └── paths.rb │ │ ├── experiment_service_pb.rb │ │ ├── experiment_service_services_pb.rb │ │ ├── geo_target_constant_service.rb │ │ ├── geo_target_constant_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── geo_target_constant_service_pb.rb │ │ ├── geo_target_constant_service_services_pb.rb │ │ ├── google_ads_field_service.rb │ │ ├── google_ads_field_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── google_ads_field_service_pb.rb │ │ ├── google_ads_field_service_services_pb.rb │ │ ├── google_ads_service.rb │ │ ├── google_ads_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── google_ads_service_pb.rb │ │ ├── google_ads_service_services_pb.rb │ │ ├── identity_verification_service.rb │ │ ├── identity_verification_service │ │ ├── client.rb │ │ └── credentials.rb │ │ ├── identity_verification_service_pb.rb │ │ ├── identity_verification_service_services_pb.rb │ │ ├── invoice_service.rb │ │ ├── invoice_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── invoice_service_pb.rb │ │ ├── invoice_service_services_pb.rb │ │ ├── keyword_plan_ad_group_keyword_service.rb │ │ ├── keyword_plan_ad_group_keyword_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── keyword_plan_ad_group_keyword_service_pb.rb │ │ ├── keyword_plan_ad_group_keyword_service_services_pb.rb │ │ ├── keyword_plan_ad_group_service.rb │ │ ├── keyword_plan_ad_group_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── keyword_plan_ad_group_service_pb.rb │ │ ├── keyword_plan_ad_group_service_services_pb.rb │ │ ├── keyword_plan_campaign_keyword_service.rb │ │ ├── keyword_plan_campaign_keyword_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── keyword_plan_campaign_keyword_service_pb.rb │ │ ├── keyword_plan_campaign_keyword_service_services_pb.rb │ │ ├── keyword_plan_campaign_service.rb │ │ ├── keyword_plan_campaign_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── keyword_plan_campaign_service_pb.rb │ │ ├── keyword_plan_campaign_service_services_pb.rb │ │ ├── keyword_plan_idea_service.rb │ │ ├── keyword_plan_idea_service │ │ ├── client.rb │ │ └── credentials.rb │ │ ├── keyword_plan_idea_service_pb.rb │ │ ├── keyword_plan_idea_service_services_pb.rb │ │ ├── keyword_plan_service.rb │ │ ├── keyword_plan_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── keyword_plan_service_pb.rb │ │ ├── keyword_plan_service_services_pb.rb │ │ ├── keyword_theme_constant_service.rb │ │ ├── keyword_theme_constant_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── keyword_theme_constant_service_pb.rb │ │ ├── keyword_theme_constant_service_services_pb.rb │ │ ├── label_service.rb │ │ ├── label_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── label_service_pb.rb │ │ ├── label_service_services_pb.rb │ │ ├── local_services_lead_service.rb │ │ ├── local_services_lead_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── local_services_lead_service_pb.rb │ │ ├── local_services_lead_service_services_pb.rb │ │ ├── offline_user_data_job_service.rb │ │ ├── offline_user_data_job_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ ├── operations.rb │ │ └── paths.rb │ │ ├── offline_user_data_job_service_pb.rb │ │ ├── offline_user_data_job_service_services_pb.rb │ │ ├── payments_account_service.rb │ │ ├── payments_account_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── payments_account_service_pb.rb │ │ ├── payments_account_service_services_pb.rb │ │ ├── product_link_invitation_service.rb │ │ ├── product_link_invitation_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── product_link_invitation_service_pb.rb │ │ ├── product_link_invitation_service_services_pb.rb │ │ ├── product_link_service.rb │ │ ├── product_link_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── product_link_service_pb.rb │ │ ├── product_link_service_services_pb.rb │ │ ├── reach_plan_service.rb │ │ ├── reach_plan_service │ │ ├── client.rb │ │ └── credentials.rb │ │ ├── reach_plan_service_pb.rb │ │ ├── reach_plan_service_services_pb.rb │ │ ├── recommendation_service.rb │ │ ├── recommendation_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── recommendation_service_pb.rb │ │ ├── recommendation_service_services_pb.rb │ │ ├── recommendation_subscription_service.rb │ │ ├── recommendation_subscription_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── recommendation_subscription_service_pb.rb │ │ ├── recommendation_subscription_service_services_pb.rb │ │ ├── remarketing_action_service.rb │ │ ├── remarketing_action_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── remarketing_action_service_pb.rb │ │ ├── remarketing_action_service_services_pb.rb │ │ ├── shareable_preview_service.rb │ │ ├── shareable_preview_service │ │ ├── client.rb │ │ └── credentials.rb │ │ ├── shareable_preview_service_pb.rb │ │ ├── shareable_preview_service_services_pb.rb │ │ ├── shared_criterion_service.rb │ │ ├── shared_criterion_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── shared_criterion_service_pb.rb │ │ ├── shared_criterion_service_services_pb.rb │ │ ├── shared_set_service.rb │ │ ├── shared_set_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── shared_set_service_pb.rb │ │ ├── shared_set_service_services_pb.rb │ │ ├── smart_campaign_setting_service.rb │ │ ├── smart_campaign_setting_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── smart_campaign_setting_service_pb.rb │ │ ├── smart_campaign_setting_service_services_pb.rb │ │ ├── smart_campaign_suggest_service.rb │ │ ├── smart_campaign_suggest_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── smart_campaign_suggest_service_pb.rb │ │ ├── smart_campaign_suggest_service_services_pb.rb │ │ ├── third_party_app_analytics_link_service.rb │ │ ├── third_party_app_analytics_link_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── third_party_app_analytics_link_service_pb.rb │ │ ├── third_party_app_analytics_link_service_services_pb.rb │ │ ├── travel_asset_suggestion_service.rb │ │ ├── travel_asset_suggestion_service │ │ ├── client.rb │ │ └── credentials.rb │ │ ├── travel_asset_suggestion_service_pb.rb │ │ ├── travel_asset_suggestion_service_services_pb.rb │ │ ├── user_data_service.rb │ │ ├── user_data_service │ │ ├── client.rb │ │ └── credentials.rb │ │ ├── user_data_service_pb.rb │ │ ├── user_data_service_services_pb.rb │ │ ├── user_list_customer_type_service.rb │ │ ├── user_list_customer_type_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── user_list_customer_type_service_pb.rb │ │ ├── user_list_customer_type_service_services_pb.rb │ │ ├── user_list_service.rb │ │ ├── user_list_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── user_list_service_pb.rb │ │ └── user_list_service_services_pb.rb │ ├── v20 │ ├── common │ │ ├── ad_asset_pb.rb │ │ ├── ad_type_infos_pb.rb │ │ ├── additional_application_info_pb.rb │ │ ├── asset_policy_pb.rb │ │ ├── asset_set_types_pb.rb │ │ ├── asset_types_pb.rb │ │ ├── asset_usage_pb.rb │ │ ├── audience_insights_attribute_pb.rb │ │ ├── audiences_pb.rb │ │ ├── bidding_pb.rb │ │ ├── click_location_pb.rb │ │ ├── consent_pb.rb │ │ ├── criteria_pb.rb │ │ ├── criterion_category_availability_pb.rb │ │ ├── custom_parameter_pb.rb │ │ ├── customizer_value_pb.rb │ │ ├── dates_pb.rb │ │ ├── extensions_pb.rb │ │ ├── feed_common_pb.rb │ │ ├── final_app_url_pb.rb │ │ ├── frequency_cap_pb.rb │ │ ├── keyword_plan_common_pb.rb │ │ ├── lifecycle_goals_pb.rb │ │ ├── local_services_pb.rb │ │ ├── metric_goal_pb.rb │ │ ├── metrics_pb.rb │ │ ├── offline_user_data_pb.rb │ │ ├── policy_pb.rb │ │ ├── policy_summary_pb.rb │ │ ├── real_time_bidding_setting_pb.rb │ │ ├── segments_pb.rb │ │ ├── simulation_pb.rb │ │ ├── tag_snippet_pb.rb │ │ ├── targeting_setting_pb.rb │ │ ├── text_label_pb.rb │ │ ├── url_collection_pb.rb │ │ ├── user_lists_pb.rb │ │ └── value_pb.rb │ ├── enums │ │ ├── access_invitation_status_pb.rb │ │ ├── access_reason_pb.rb │ │ ├── access_role_pb.rb │ │ ├── account_budget_proposal_status_pb.rb │ │ ├── account_budget_proposal_type_pb.rb │ │ ├── account_budget_status_pb.rb │ │ ├── account_link_status_pb.rb │ │ ├── ad_destination_type_pb.rb │ │ ├── ad_format_type_pb.rb │ │ ├── ad_group_ad_primary_status_pb.rb │ │ ├── ad_group_ad_primary_status_reason_pb.rb │ │ ├── ad_group_ad_rotation_mode_pb.rb │ │ ├── ad_group_ad_status_pb.rb │ │ ├── ad_group_criterion_approval_status_pb.rb │ │ ├── ad_group_criterion_primary_status_pb.rb │ │ ├── ad_group_criterion_primary_status_reason_pb.rb │ │ ├── ad_group_criterion_status_pb.rb │ │ ├── ad_group_primary_status_pb.rb │ │ ├── ad_group_primary_status_reason_pb.rb │ │ ├── ad_group_status_pb.rb │ │ ├── ad_group_type_pb.rb │ │ ├── ad_network_type_pb.rb │ │ ├── ad_serving_optimization_status_pb.rb │ │ ├── ad_strength_action_item_type_pb.rb │ │ ├── ad_strength_pb.rb │ │ ├── ad_type_pb.rb │ │ ├── advertising_channel_sub_type_pb.rb │ │ ├── advertising_channel_type_pb.rb │ │ ├── age_range_type_pb.rb │ │ ├── android_privacy_interaction_type_pb.rb │ │ ├── android_privacy_network_type_pb.rb │ │ ├── app_bidding_goal_pb.rb │ │ ├── app_campaign_app_store_pb.rb │ │ ├── app_campaign_bidding_strategy_goal_type_pb.rb │ │ ├── app_payment_model_type_pb.rb │ │ ├── app_url_operating_system_type_pb.rb │ │ ├── application_instance_pb.rb │ │ ├── asset_automation_status_pb.rb │ │ ├── asset_automation_type_pb.rb │ │ ├── asset_coverage_video_aspect_ratio_requirement_pb.rb │ │ ├── asset_field_type_pb.rb │ │ ├── asset_group_primary_status_pb.rb │ │ ├── asset_group_primary_status_reason_pb.rb │ │ ├── asset_group_signal_approval_status_pb.rb │ │ ├── asset_group_status_pb.rb │ │ ├── asset_link_primary_status_pb.rb │ │ ├── asset_link_primary_status_reason_pb.rb │ │ ├── asset_link_status_pb.rb │ │ ├── asset_offline_evaluation_error_reasons_pb.rb │ │ ├── asset_performance_label_pb.rb │ │ ├── asset_set_asset_status_pb.rb │ │ ├── asset_set_link_status_pb.rb │ │ ├── asset_set_status_pb.rb │ │ ├── asset_set_type_pb.rb │ │ ├── asset_source_pb.rb │ │ ├── asset_type_pb.rb │ │ ├── async_action_status_pb.rb │ │ ├── attribution_model_pb.rb │ │ ├── audience_insights_dimension_pb.rb │ │ ├── audience_insights_marketing_objective_pb.rb │ │ ├── audience_scope_pb.rb │ │ ├── audience_status_pb.rb │ │ ├── batch_job_status_pb.rb │ │ ├── bid_modifier_source_pb.rb │ │ ├── bidding_source_pb.rb │ │ ├── bidding_strategy_status_pb.rb │ │ ├── bidding_strategy_system_status_pb.rb │ │ ├── bidding_strategy_type_pb.rb │ │ ├── billing_setup_status_pb.rb │ │ ├── brand_request_rejection_reason_pb.rb │ │ ├── brand_safety_suitability_pb.rb │ │ ├── brand_state_pb.rb │ │ ├── budget_campaign_association_status_pb.rb │ │ ├── budget_delivery_method_pb.rb │ │ ├── budget_period_pb.rb │ │ ├── budget_status_pb.rb │ │ ├── budget_type_pb.rb │ │ ├── business_message_call_to_action_type_pb.rb │ │ ├── business_message_provider_pb.rb │ │ ├── call_conversion_reporting_state_pb.rb │ │ ├── call_to_action_type_pb.rb │ │ ├── call_tracking_display_location_pb.rb │ │ ├── call_type_pb.rb │ │ ├── campaign_criterion_status_pb.rb │ │ ├── campaign_draft_status_pb.rb │ │ ├── campaign_experiment_type_pb.rb │ │ ├── campaign_group_status_pb.rb │ │ ├── campaign_keyword_match_type_pb.rb │ │ ├── campaign_primary_status_pb.rb │ │ ├── campaign_primary_status_reason_pb.rb │ │ ├── campaign_serving_status_pb.rb │ │ ├── campaign_shared_set_status_pb.rb │ │ ├── campaign_status_pb.rb │ │ ├── chain_relationship_type_pb.rb │ │ ├── change_client_type_pb.rb │ │ ├── change_event_resource_type_pb.rb │ │ ├── change_status_operation_pb.rb │ │ ├── change_status_resource_type_pb.rb │ │ ├── click_type_pb.rb │ │ ├── combined_audience_status_pb.rb │ │ ├── consent_status_pb.rb │ │ ├── content_label_type_pb.rb │ │ ├── conversion_action_category_pb.rb │ │ ├── conversion_action_counting_type_pb.rb │ │ ├── conversion_action_status_pb.rb │ │ ├── conversion_action_type_pb.rb │ │ ├── conversion_adjustment_type_pb.rb │ │ ├── conversion_attribution_event_type_pb.rb │ │ ├── conversion_custom_variable_status_pb.rb │ │ ├── conversion_customer_type_pb.rb │ │ ├── conversion_environment_enum_pb.rb │ │ ├── conversion_lag_bucket_pb.rb │ │ ├── conversion_or_adjustment_lag_bucket_pb.rb │ │ ├── conversion_origin_pb.rb │ │ ├── conversion_tracking_status_enum_pb.rb │ │ ├── conversion_value_rule_primary_dimension_pb.rb │ │ ├── conversion_value_rule_set_status_pb.rb │ │ ├── conversion_value_rule_status_pb.rb │ │ ├── converting_user_prior_engagement_type_and_ltv_bucket_pb.rb │ │ ├── criterion_category_channel_availability_mode_pb.rb │ │ ├── criterion_category_locale_availability_mode_pb.rb │ │ ├── criterion_system_serving_status_pb.rb │ │ ├── criterion_type_pb.rb │ │ ├── custom_audience_member_type_pb.rb │ │ ├── custom_audience_status_pb.rb │ │ ├── custom_audience_type_pb.rb │ │ ├── custom_conversion_goal_status_pb.rb │ │ ├── custom_interest_member_type_pb.rb │ │ ├── custom_interest_status_pb.rb │ │ ├── custom_interest_type_pb.rb │ │ ├── customer_acquisition_optimization_mode_pb.rb │ │ ├── customer_match_upload_key_type_pb.rb │ │ ├── customer_pay_per_conversion_eligibility_failure_reason_pb.rb │ │ ├── customer_status_pb.rb │ │ ├── customizer_attribute_status_pb.rb │ │ ├── customizer_attribute_type_pb.rb │ │ ├── customizer_value_status_pb.rb │ │ ├── data_driven_model_status_pb.rb │ │ ├── data_link_status_pb.rb │ │ ├── data_link_type_pb.rb │ │ ├── day_of_week_pb.rb │ │ ├── demand_gen_channel_config_pb.rb │ │ ├── demand_gen_channel_strategy_pb.rb │ │ ├── device_pb.rb │ │ ├── display_ad_format_setting_pb.rb │ │ ├── display_upload_product_type_pb.rb │ │ ├── distance_bucket_pb.rb │ │ ├── eu_political_advertising_status_pb.rb │ │ ├── experiment_metric_direction_pb.rb │ │ ├── experiment_metric_pb.rb │ │ ├── experiment_status_pb.rb │ │ ├── experiment_type_pb.rb │ │ ├── external_conversion_source_pb.rb │ │ ├── fixed_cpm_goal_pb.rb │ │ ├── fixed_cpm_target_frequency_time_unit_pb.rb │ │ ├── frequency_cap_event_type_pb.rb │ │ ├── frequency_cap_level_pb.rb │ │ ├── frequency_cap_time_unit_pb.rb │ │ ├── gender_type_pb.rb │ │ ├── geo_target_constant_status_pb.rb │ │ ├── geo_targeting_type_pb.rb │ │ ├── goal_config_level_pb.rb │ │ ├── google_ads_field_category_pb.rb │ │ ├── google_ads_field_data_type_pb.rb │ │ ├── google_voice_call_status_pb.rb │ │ ├── hotel_asset_suggestion_status_pb.rb │ │ ├── hotel_date_selection_type_pb.rb │ │ ├── hotel_price_bucket_pb.rb │ │ ├── hotel_rate_type_pb.rb │ │ ├── hotel_reconciliation_status_pb.rb │ │ ├── identity_verification_program_pb.rb │ │ ├── identity_verification_program_status_pb.rb │ │ ├── income_range_type_pb.rb │ │ ├── insights_knowledge_graph_entity_capabilities_pb.rb │ │ ├── insights_trend_pb.rb │ │ ├── interaction_event_type_pb.rb │ │ ├── interaction_type_pb.rb │ │ ├── invoice_type_pb.rb │ │ ├── keyword_match_type_pb.rb │ │ ├── keyword_plan_aggregate_metric_type_pb.rb │ │ ├── keyword_plan_competition_level_pb.rb │ │ ├── keyword_plan_concept_group_type_pb.rb │ │ ├── keyword_plan_forecast_interval_pb.rb │ │ ├── keyword_plan_keyword_annotation_pb.rb │ │ ├── keyword_plan_network_pb.rb │ │ ├── label_status_pb.rb │ │ ├── lead_form_call_to_action_type_pb.rb │ │ ├── lead_form_desired_intent_pb.rb │ │ ├── lead_form_field_user_input_type_pb.rb │ │ ├── lead_form_post_submit_call_to_action_type_pb.rb │ │ ├── legacy_app_install_ad_app_store_pb.rb │ │ ├── linked_account_type_pb.rb │ │ ├── linked_product_type_pb.rb │ │ ├── listing_group_filter_custom_attribute_index_pb.rb │ │ ├── listing_group_filter_listing_source_pb.rb │ │ ├── listing_group_filter_product_category_level_pb.rb │ │ ├── listing_group_filter_product_channel_pb.rb │ │ ├── listing_group_filter_product_condition_pb.rb │ │ ├── listing_group_filter_product_type_level_pb.rb │ │ ├── listing_group_filter_type_enum_pb.rb │ │ ├── listing_group_type_pb.rb │ │ ├── listing_type_pb.rb │ │ ├── local_services_business_registration_check_rejection_reason_pb.rb │ │ ├── local_services_business_registration_type_pb.rb │ │ ├── local_services_conversation_type_pb.rb │ │ ├── local_services_employee_status_pb.rb │ │ ├── local_services_employee_type_pb.rb │ │ ├── local_services_insurance_rejection_reason_pb.rb │ │ ├── local_services_lead_credit_issuance_decision_pb.rb │ │ ├── local_services_lead_credit_state_pb.rb │ │ ├── local_services_lead_status_pb.rb │ │ ├── local_services_lead_survey_answer_pb.rb │ │ ├── local_services_lead_survey_dissatisfied_reason_pb.rb │ │ ├── local_services_lead_survey_satisfied_reason_pb.rb │ │ ├── local_services_lead_type_pb.rb │ │ ├── local_services_license_rejection_reason_pb.rb │ │ ├── local_services_participant_type_pb.rb │ │ ├── local_services_verification_artifact_status_pb.rb │ │ ├── local_services_verification_artifact_type_pb.rb │ │ ├── local_services_verification_status_pb.rb │ │ ├── location_group_radius_units_pb.rb │ │ ├── location_ownership_type_pb.rb │ │ ├── location_source_type_pb.rb │ │ ├── location_string_filter_type_pb.rb │ │ ├── lookalike_expansion_level_pb.rb │ │ ├── manager_link_status_pb.rb │ │ ├── media_type_pb.rb │ │ ├── mime_type_pb.rb │ │ ├── minute_of_hour_pb.rb │ │ ├── mobile_app_vendor_pb.rb │ │ ├── mobile_device_type_pb.rb │ │ ├── month_of_year_pb.rb │ │ ├── negative_geo_target_type_pb.rb │ │ ├── non_skippable_max_duration_pb.rb │ │ ├── non_skippable_min_duration_pb.rb │ │ ├── offline_conversion_diagnostic_status_enum_pb.rb │ │ ├── offline_event_upload_client_enum_pb.rb │ │ ├── offline_user_data_job_failure_reason_pb.rb │ │ ├── offline_user_data_job_match_rate_range_pb.rb │ │ ├── offline_user_data_job_status_pb.rb │ │ ├── offline_user_data_job_type_pb.rb │ │ ├── operating_system_version_operator_type_pb.rb │ │ ├── optimization_goal_type_pb.rb │ │ ├── parental_status_type_pb.rb │ │ ├── payment_mode_pb.rb │ │ ├── performance_max_upgrade_status_pb.rb │ │ ├── placement_type_pb.rb │ │ ├── policy_approval_status_pb.rb │ │ ├── policy_review_status_pb.rb │ │ ├── policy_topic_entry_type_pb.rb │ │ ├── policy_topic_evidence_destination_mismatch_url_type_pb.rb │ │ ├── policy_topic_evidence_destination_not_working_device_pb.rb │ │ ├── policy_topic_evidence_destination_not_working_dns_error_type_pb.rb │ │ ├── positive_geo_target_type_pb.rb │ │ ├── price_extension_price_qualifier_pb.rb │ │ ├── price_extension_price_unit_pb.rb │ │ ├── price_extension_type_pb.rb │ │ ├── product_availability_pb.rb │ │ ├── product_category_level_pb.rb │ │ ├── product_category_state_pb.rb │ │ ├── product_channel_exclusivity_pb.rb │ │ ├── product_channel_pb.rb │ │ ├── product_condition_pb.rb │ │ ├── product_custom_attribute_index_pb.rb │ │ ├── product_issue_severity_pb.rb │ │ ├── product_link_invitation_status_pb.rb │ │ ├── product_status_pb.rb │ │ ├── product_type_level_pb.rb │ │ ├── promotion_extension_discount_modifier_pb.rb │ │ ├── promotion_extension_occasion_pb.rb │ │ ├── proximity_radius_units_pb.rb │ │ ├── quality_score_bucket_pb.rb │ │ ├── reach_plan_age_range_pb.rb │ │ ├── reach_plan_conversion_rate_model_pb.rb │ │ ├── reach_plan_network_pb.rb │ │ ├── reach_plan_plannable_user_list_status_pb.rb │ │ ├── reach_plan_surface_pb.rb │ │ ├── recommendation_subscription_status_pb.rb │ │ ├── recommendation_type_pb.rb │ │ ├── resource_change_operation_pb.rb │ │ ├── resource_limit_type_pb.rb │ │ ├── response_content_type_pb.rb │ │ ├── search_engine_results_page_type_pb.rb │ │ ├── search_term_match_type_pb.rb │ │ ├── search_term_targeting_status_pb.rb │ │ ├── seasonality_event_scope_pb.rb │ │ ├── seasonality_event_status_pb.rb │ │ ├── served_asset_field_type_pb.rb │ │ ├── shared_set_status_pb.rb │ │ ├── shared_set_type_pb.rb │ │ ├── shopping_add_products_to_campaign_recommendation_enum_pb.rb │ │ ├── simulation_modification_method_pb.rb │ │ ├── simulation_type_pb.rb │ │ ├── sk_ad_network_ad_event_type_pb.rb │ │ ├── sk_ad_network_attribution_credit_pb.rb │ │ ├── sk_ad_network_coarse_conversion_value_pb.rb │ │ ├── sk_ad_network_source_type_pb.rb │ │ ├── sk_ad_network_user_type_pb.rb │ │ ├── slot_pb.rb │ │ ├── smart_campaign_not_eligible_reason_pb.rb │ │ ├── smart_campaign_status_pb.rb │ │ ├── spending_limit_type_pb.rb │ │ ├── summary_row_setting_pb.rb │ │ ├── system_managed_entity_source_pb.rb │ │ ├── target_cpa_opt_in_recommendation_goal_pb.rb │ │ ├── target_frequency_time_unit_pb.rb │ │ ├── target_impression_share_location_pb.rb │ │ ├── targeting_dimension_pb.rb │ │ ├── time_type_pb.rb │ │ ├── tracking_code_page_format_pb.rb │ │ ├── tracking_code_type_pb.rb │ │ ├── user_identifier_source_pb.rb │ │ ├── user_interest_taxonomy_type_pb.rb │ │ ├── user_list_access_status_pb.rb │ │ ├── user_list_closing_reason_pb.rb │ │ ├── user_list_crm_data_source_type_pb.rb │ │ ├── user_list_customer_type_category_pb.rb │ │ ├── user_list_date_rule_item_operator_pb.rb │ │ ├── user_list_flexible_rule_operator_pb.rb │ │ ├── user_list_logical_rule_operator_pb.rb │ │ ├── user_list_membership_status_pb.rb │ │ ├── user_list_number_rule_item_operator_pb.rb │ │ ├── user_list_prepopulation_status_pb.rb │ │ ├── user_list_rule_type_pb.rb │ │ ├── user_list_size_range_pb.rb │ │ ├── user_list_string_rule_item_operator_pb.rb │ │ ├── user_list_type_pb.rb │ │ ├── value_rule_device_type_pb.rb │ │ ├── value_rule_geo_location_match_type_pb.rb │ │ ├── value_rule_operation_pb.rb │ │ ├── value_rule_set_attachment_type_pb.rb │ │ ├── value_rule_set_dimension_pb.rb │ │ ├── vanity_pharma_display_url_mode_pb.rb │ │ ├── vanity_pharma_text_pb.rb │ │ ├── video_ad_format_restriction_pb.rb │ │ ├── video_thumbnail_pb.rb │ │ ├── webpage_condition_operand_pb.rb │ │ └── webpage_condition_operator_pb.rb │ ├── errors │ │ ├── access_invitation_error_pb.rb │ │ ├── account_budget_proposal_error_pb.rb │ │ ├── account_link_error_pb.rb │ │ ├── ad_customizer_error_pb.rb │ │ ├── ad_error_pb.rb │ │ ├── ad_group_ad_error_pb.rb │ │ ├── ad_group_bid_modifier_error_pb.rb │ │ ├── ad_group_criterion_customizer_error_pb.rb │ │ ├── ad_group_criterion_error_pb.rb │ │ ├── ad_group_customizer_error_pb.rb │ │ ├── ad_group_error_pb.rb │ │ ├── ad_group_feed_error_pb.rb │ │ ├── ad_parameter_error_pb.rb │ │ ├── ad_sharing_error_pb.rb │ │ ├── adx_error_pb.rb │ │ ├── asset_error_pb.rb │ │ ├── asset_group_asset_error_pb.rb │ │ ├── asset_group_error_pb.rb │ │ ├── asset_group_listing_group_filter_error_pb.rb │ │ ├── asset_group_signal_error_pb.rb │ │ ├── asset_link_error_pb.rb │ │ ├── asset_set_asset_error_pb.rb │ │ ├── asset_set_error_pb.rb │ │ ├── asset_set_link_error_pb.rb │ │ ├── audience_error_pb.rb │ │ ├── audience_insights_error_pb.rb │ │ ├── authentication_error_pb.rb │ │ ├── authorization_error_pb.rb │ │ ├── automatically_created_asset_removal_error_pb.rb │ │ ├── batch_job_error_pb.rb │ │ ├── bidding_error_pb.rb │ │ ├── bidding_strategy_error_pb.rb │ │ ├── billing_setup_error_pb.rb │ │ ├── brand_guidelines_migration_error_pb.rb │ │ ├── campaign_budget_error_pb.rb │ │ ├── campaign_conversion_goal_error_pb.rb │ │ ├── campaign_criterion_error_pb.rb │ │ ├── campaign_customizer_error_pb.rb │ │ ├── campaign_draft_error_pb.rb │ │ ├── campaign_error_pb.rb │ │ ├── campaign_experiment_error_pb.rb │ │ ├── campaign_feed_error_pb.rb │ │ ├── campaign_lifecycle_goal_error_pb.rb │ │ ├── campaign_shared_set_error_pb.rb │ │ ├── change_event_error_pb.rb │ │ ├── change_status_error_pb.rb │ │ ├── click_view_error_pb.rb │ │ ├── collection_size_error_pb.rb │ │ ├── context_error_pb.rb │ │ ├── conversion_action_error_pb.rb │ │ ├── conversion_adjustment_upload_error_pb.rb │ │ ├── conversion_custom_variable_error_pb.rb │ │ ├── conversion_goal_campaign_config_error_pb.rb │ │ ├── conversion_upload_error_pb.rb │ │ ├── conversion_value_rule_error_pb.rb │ │ ├── conversion_value_rule_set_error_pb.rb │ │ ├── country_code_error_pb.rb │ │ ├── criterion_error_pb.rb │ │ ├── currency_code_error_pb.rb │ │ ├── currency_error_pb.rb │ │ ├── custom_audience_error_pb.rb │ │ ├── custom_conversion_goal_error_pb.rb │ │ ├── custom_interest_error_pb.rb │ │ ├── customer_client_link_error_pb.rb │ │ ├── customer_customizer_error_pb.rb │ │ ├── customer_error_pb.rb │ │ ├── customer_feed_error_pb.rb │ │ ├── customer_lifecycle_goal_error_pb.rb │ │ ├── customer_manager_link_error_pb.rb │ │ ├── customer_sk_ad_network_conversion_value_schema_error_pb.rb │ │ ├── customer_user_access_error_pb.rb │ │ ├── customizer_attribute_error_pb.rb │ │ ├── data_link_error_pb.rb │ │ ├── database_error_pb.rb │ │ ├── date_error_pb.rb │ │ ├── date_range_error_pb.rb │ │ ├── distinct_error_pb.rb │ │ ├── enum_error_pb.rb │ │ ├── errors_pb.rb │ │ ├── experiment_arm_error_pb.rb │ │ ├── experiment_error_pb.rb │ │ ├── extension_feed_item_error_pb.rb │ │ ├── extension_setting_error_pb.rb │ │ ├── feed_attribute_reference_error_pb.rb │ │ ├── feed_error_pb.rb │ │ ├── feed_item_error_pb.rb │ │ ├── feed_item_set_error_pb.rb │ │ ├── feed_item_set_link_error_pb.rb │ │ ├── feed_item_target_error_pb.rb │ │ ├── feed_item_validation_error_pb.rb │ │ ├── feed_mapping_error_pb.rb │ │ ├── field_error_pb.rb │ │ ├── field_mask_error_pb.rb │ │ ├── function_error_pb.rb │ │ ├── function_parsing_error_pb.rb │ │ ├── geo_target_constant_suggestion_error_pb.rb │ │ ├── header_error_pb.rb │ │ ├── id_error_pb.rb │ │ ├── identity_verification_error_pb.rb │ │ ├── image_error_pb.rb │ │ ├── internal_error_pb.rb │ │ ├── invoice_error_pb.rb │ │ ├── keyword_plan_ad_group_error_pb.rb │ │ ├── keyword_plan_ad_group_keyword_error_pb.rb │ │ ├── keyword_plan_campaign_error_pb.rb │ │ ├── keyword_plan_campaign_keyword_error_pb.rb │ │ ├── keyword_plan_error_pb.rb │ │ ├── keyword_plan_idea_error_pb.rb │ │ ├── label_error_pb.rb │ │ ├── language_code_error_pb.rb │ │ ├── list_operation_error_pb.rb │ │ ├── manager_link_error_pb.rb │ │ ├── media_bundle_error_pb.rb │ │ ├── media_file_error_pb.rb │ │ ├── media_upload_error_pb.rb │ │ ├── merchant_center_error_pb.rb │ │ ├── multiplier_error_pb.rb │ │ ├── mutate_error_pb.rb │ │ ├── new_resource_creation_error_pb.rb │ │ ├── not_allowlisted_error_pb.rb │ │ ├── not_empty_error_pb.rb │ │ ├── null_error_pb.rb │ │ ├── offline_user_data_job_error_pb.rb │ │ ├── operation_access_denied_error_pb.rb │ │ ├── operator_error_pb.rb │ │ ├── partial_failure_error_pb.rb │ │ ├── payments_account_error_pb.rb │ │ ├── policy_finding_error_pb.rb │ │ ├── policy_validation_parameter_error_pb.rb │ │ ├── policy_violation_error_pb.rb │ │ ├── product_link_error_pb.rb │ │ ├── product_link_invitation_error_pb.rb │ │ ├── query_error_pb.rb │ │ ├── quota_error_pb.rb │ │ ├── range_error_pb.rb │ │ ├── reach_plan_error_pb.rb │ │ ├── recommendation_error_pb.rb │ │ ├── recommendation_subscription_error_pb.rb │ │ ├── region_code_error_pb.rb │ │ ├── request_error_pb.rb │ │ ├── resource_access_denied_error_pb.rb │ │ ├── resource_count_limit_exceeded_error_pb.rb │ │ ├── search_term_insight_error_pb.rb │ │ ├── setting_error_pb.rb │ │ ├── shareable_preview_error_pb.rb │ │ ├── shared_criterion_error_pb.rb │ │ ├── shared_set_error_pb.rb │ │ ├── shopping_product_error_pb.rb │ │ ├── size_limit_error_pb.rb │ │ ├── smart_campaign_error_pb.rb │ │ ├── string_format_error_pb.rb │ │ ├── string_length_error_pb.rb │ │ ├── third_party_app_analytics_link_error_pb.rb │ │ ├── time_zone_error_pb.rb │ │ ├── url_field_error_pb.rb │ │ ├── user_data_error_pb.rb │ │ ├── user_list_customer_type_error_pb.rb │ │ ├── user_list_error_pb.rb │ │ ├── video_campaign_error_pb.rb │ │ └── youtube_video_registration_error_pb.rb │ ├── resources │ │ ├── accessible_bidding_strategy_pb.rb │ │ ├── account_budget_pb.rb │ │ ├── account_budget_proposal_pb.rb │ │ ├── account_link_pb.rb │ │ ├── ad_group_ad_asset_combination_view_pb.rb │ │ ├── ad_group_ad_asset_view_pb.rb │ │ ├── ad_group_ad_label_pb.rb │ │ ├── ad_group_ad_pb.rb │ │ ├── ad_group_asset_pb.rb │ │ ├── ad_group_asset_set_pb.rb │ │ ├── ad_group_audience_view_pb.rb │ │ ├── ad_group_bid_modifier_pb.rb │ │ ├── ad_group_criterion_customizer_pb.rb │ │ ├── ad_group_criterion_label_pb.rb │ │ ├── ad_group_criterion_pb.rb │ │ ├── ad_group_criterion_simulation_pb.rb │ │ ├── ad_group_customizer_pb.rb │ │ ├── ad_group_label_pb.rb │ │ ├── ad_group_pb.rb │ │ ├── ad_group_simulation_pb.rb │ │ ├── ad_parameter_pb.rb │ │ ├── ad_pb.rb │ │ ├── ad_schedule_view_pb.rb │ │ ├── age_range_view_pb.rb │ │ ├── android_privacy_shared_key_google_ad_group_pb.rb │ │ ├── android_privacy_shared_key_google_campaign_pb.rb │ │ ├── android_privacy_shared_key_google_network_type_pb.rb │ │ ├── asset_field_type_view_pb.rb │ │ ├── asset_group_asset_pb.rb │ │ ├── asset_group_listing_group_filter_pb.rb │ │ ├── asset_group_pb.rb │ │ ├── asset_group_product_group_view_pb.rb │ │ ├── asset_group_signal_pb.rb │ │ ├── asset_group_top_combination_view_pb.rb │ │ ├── asset_pb.rb │ │ ├── asset_set_asset_pb.rb │ │ ├── asset_set_pb.rb │ │ ├── asset_set_type_view_pb.rb │ │ ├── audience_pb.rb │ │ ├── batch_job_pb.rb │ │ ├── bidding_data_exclusion_pb.rb │ │ ├── bidding_seasonality_adjustment_pb.rb │ │ ├── bidding_strategy_pb.rb │ │ ├── bidding_strategy_simulation_pb.rb │ │ ├── billing_setup_pb.rb │ │ ├── call_view_pb.rb │ │ ├── campaign_aggregate_asset_view_pb.rb │ │ ├── campaign_asset_pb.rb │ │ ├── campaign_asset_set_pb.rb │ │ ├── campaign_audience_view_pb.rb │ │ ├── campaign_bid_modifier_pb.rb │ │ ├── campaign_budget_pb.rb │ │ ├── campaign_conversion_goal_pb.rb │ │ ├── campaign_criterion_pb.rb │ │ ├── campaign_customizer_pb.rb │ │ ├── campaign_draft_pb.rb │ │ ├── campaign_group_pb.rb │ │ ├── campaign_label_pb.rb │ │ ├── campaign_lifecycle_goal_pb.rb │ │ ├── campaign_pb.rb │ │ ├── campaign_search_term_insight_pb.rb │ │ ├── campaign_shared_set_pb.rb │ │ ├── campaign_simulation_pb.rb │ │ ├── carrier_constant_pb.rb │ │ ├── change_event_pb.rb │ │ ├── change_status_pb.rb │ │ ├── channel_aggregate_asset_view_pb.rb │ │ ├── click_view_pb.rb │ │ ├── combined_audience_pb.rb │ │ ├── content_criterion_view_pb.rb │ │ ├── conversion_action_pb.rb │ │ ├── conversion_custom_variable_pb.rb │ │ ├── conversion_goal_campaign_config_pb.rb │ │ ├── conversion_value_rule_pb.rb │ │ ├── conversion_value_rule_set_pb.rb │ │ ├── currency_constant_pb.rb │ │ ├── custom_audience_pb.rb │ │ ├── custom_conversion_goal_pb.rb │ │ ├── custom_interest_pb.rb │ │ ├── customer_asset_pb.rb │ │ ├── customer_asset_set_pb.rb │ │ ├── customer_client_link_pb.rb │ │ ├── customer_client_pb.rb │ │ ├── customer_conversion_goal_pb.rb │ │ ├── customer_customizer_pb.rb │ │ ├── customer_label_pb.rb │ │ ├── customer_lifecycle_goal_pb.rb │ │ ├── customer_manager_link_pb.rb │ │ ├── customer_negative_criterion_pb.rb │ │ ├── customer_pb.rb │ │ ├── customer_search_term_insight_pb.rb │ │ ├── customer_sk_ad_network_conversion_value_schema_pb.rb │ │ ├── customer_user_access_invitation_pb.rb │ │ ├── customer_user_access_pb.rb │ │ ├── customizer_attribute_pb.rb │ │ ├── data_link_pb.rb │ │ ├── detail_placement_view_pb.rb │ │ ├── detailed_demographic_pb.rb │ │ ├── display_keyword_view_pb.rb │ │ ├── distance_view_pb.rb │ │ ├── domain_category_pb.rb │ │ ├── dynamic_search_ads_search_term_view_pb.rb │ │ ├── expanded_landing_page_view_pb.rb │ │ ├── experiment_arm_pb.rb │ │ ├── experiment_pb.rb │ │ ├── gender_view_pb.rb │ │ ├── geo_target_constant_pb.rb │ │ ├── geographic_view_pb.rb │ │ ├── google_ads_field_pb.rb │ │ ├── group_placement_view_pb.rb │ │ ├── hotel_group_view_pb.rb │ │ ├── hotel_performance_view_pb.rb │ │ ├── hotel_reconciliation_pb.rb │ │ ├── income_range_view_pb.rb │ │ ├── invoice_pb.rb │ │ ├── keyword_plan_ad_group_keyword_pb.rb │ │ ├── keyword_plan_ad_group_pb.rb │ │ ├── keyword_plan_campaign_keyword_pb.rb │ │ ├── keyword_plan_campaign_pb.rb │ │ ├── keyword_plan_pb.rb │ │ ├── keyword_theme_constant_pb.rb │ │ ├── keyword_view_pb.rb │ │ ├── label_pb.rb │ │ ├── landing_page_view_pb.rb │ │ ├── language_constant_pb.rb │ │ ├── lead_form_submission_data_pb.rb │ │ ├── life_event_pb.rb │ │ ├── local_services_employee_pb.rb │ │ ├── local_services_lead_conversation_pb.rb │ │ ├── local_services_lead_pb.rb │ │ ├── local_services_verification_artifact_pb.rb │ │ ├── location_view_pb.rb │ │ ├── managed_placement_view_pb.rb │ │ ├── media_file_pb.rb │ │ ├── mobile_app_category_constant_pb.rb │ │ ├── mobile_device_constant_pb.rb │ │ ├── offline_conversion_upload_client_summary_pb.rb │ │ ├── offline_conversion_upload_conversion_action_summary_pb.rb │ │ ├── offline_user_data_job_pb.rb │ │ ├── operating_system_version_constant_pb.rb │ │ ├── paid_organic_search_term_view_pb.rb │ │ ├── parental_status_view_pb.rb │ │ ├── payments_account_pb.rb │ │ ├── per_store_view_pb.rb │ │ ├── performance_max_placement_view_pb.rb │ │ ├── product_category_constant_pb.rb │ │ ├── product_group_view_pb.rb │ │ ├── product_link_invitation_pb.rb │ │ ├── product_link_pb.rb │ │ ├── qualifying_question_pb.rb │ │ ├── recommendation_pb.rb │ │ ├── recommendation_subscription_pb.rb │ │ ├── remarketing_action_pb.rb │ │ ├── search_term_view_pb.rb │ │ ├── shared_criterion_pb.rb │ │ ├── shared_set_pb.rb │ │ ├── shopping_performance_view_pb.rb │ │ ├── shopping_product_pb.rb │ │ ├── smart_campaign_search_term_view_pb.rb │ │ ├── smart_campaign_setting_pb.rb │ │ ├── third_party_app_analytics_link_pb.rb │ │ ├── topic_constant_pb.rb │ │ ├── topic_view_pb.rb │ │ ├── travel_activity_group_view_pb.rb │ │ ├── travel_activity_performance_view_pb.rb │ │ ├── user_interest_pb.rb │ │ ├── user_list_customer_type_pb.rb │ │ ├── user_list_pb.rb │ │ ├── user_location_view_pb.rb │ │ ├── video_pb.rb │ │ └── webpage_view_pb.rb │ ├── services.rb │ └── services │ │ ├── account_budget_proposal_service.rb │ │ ├── account_budget_proposal_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── account_budget_proposal_service_pb.rb │ │ ├── account_budget_proposal_service_services_pb.rb │ │ ├── account_link_service.rb │ │ ├── account_link_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── account_link_service_pb.rb │ │ ├── account_link_service_services_pb.rb │ │ ├── ad_group_ad_label_service.rb │ │ ├── ad_group_ad_label_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── ad_group_ad_label_service_pb.rb │ │ ├── ad_group_ad_label_service_services_pb.rb │ │ ├── ad_group_ad_service.rb │ │ ├── ad_group_ad_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── ad_group_ad_service_pb.rb │ │ ├── ad_group_ad_service_services_pb.rb │ │ ├── ad_group_asset_service.rb │ │ ├── ad_group_asset_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── ad_group_asset_service_pb.rb │ │ ├── ad_group_asset_service_services_pb.rb │ │ ├── ad_group_asset_set_service.rb │ │ ├── ad_group_asset_set_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── ad_group_asset_set_service_pb.rb │ │ ├── ad_group_asset_set_service_services_pb.rb │ │ ├── ad_group_bid_modifier_service.rb │ │ ├── ad_group_bid_modifier_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── ad_group_bid_modifier_service_pb.rb │ │ ├── ad_group_bid_modifier_service_services_pb.rb │ │ ├── ad_group_criterion_customizer_service.rb │ │ ├── ad_group_criterion_customizer_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── ad_group_criterion_customizer_service_pb.rb │ │ ├── ad_group_criterion_customizer_service_services_pb.rb │ │ ├── ad_group_criterion_label_service.rb │ │ ├── ad_group_criterion_label_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── ad_group_criterion_label_service_pb.rb │ │ ├── ad_group_criterion_label_service_services_pb.rb │ │ ├── ad_group_criterion_service.rb │ │ ├── ad_group_criterion_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── ad_group_criterion_service_pb.rb │ │ ├── ad_group_criterion_service_services_pb.rb │ │ ├── ad_group_customizer_service.rb │ │ ├── ad_group_customizer_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── ad_group_customizer_service_pb.rb │ │ ├── ad_group_customizer_service_services_pb.rb │ │ ├── ad_group_label_service.rb │ │ ├── ad_group_label_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── ad_group_label_service_pb.rb │ │ ├── ad_group_label_service_services_pb.rb │ │ ├── ad_group_service.rb │ │ ├── ad_group_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── ad_group_service_pb.rb │ │ ├── ad_group_service_services_pb.rb │ │ ├── ad_parameter_service.rb │ │ ├── ad_parameter_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── ad_parameter_service_pb.rb │ │ ├── ad_parameter_service_services_pb.rb │ │ ├── ad_service.rb │ │ ├── ad_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── ad_service_pb.rb │ │ ├── ad_service_services_pb.rb │ │ ├── asset_group_asset_service.rb │ │ ├── asset_group_asset_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── asset_group_asset_service_pb.rb │ │ ├── asset_group_asset_service_services_pb.rb │ │ ├── asset_group_listing_group_filter_service.rb │ │ ├── asset_group_listing_group_filter_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── asset_group_listing_group_filter_service_pb.rb │ │ ├── asset_group_listing_group_filter_service_services_pb.rb │ │ ├── asset_group_service.rb │ │ ├── asset_group_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── asset_group_service_pb.rb │ │ ├── asset_group_service_services_pb.rb │ │ ├── asset_group_signal_service.rb │ │ ├── asset_group_signal_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── asset_group_signal_service_pb.rb │ │ ├── asset_group_signal_service_services_pb.rb │ │ ├── asset_service.rb │ │ ├── asset_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── asset_service_pb.rb │ │ ├── asset_service_services_pb.rb │ │ ├── asset_set_asset_service.rb │ │ ├── asset_set_asset_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── asset_set_asset_service_pb.rb │ │ ├── asset_set_asset_service_services_pb.rb │ │ ├── asset_set_service.rb │ │ ├── asset_set_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── asset_set_service_pb.rb │ │ ├── asset_set_service_services_pb.rb │ │ ├── audience_insights_service.rb │ │ ├── audience_insights_service │ │ ├── client.rb │ │ └── credentials.rb │ │ ├── audience_insights_service_pb.rb │ │ ├── audience_insights_service_services_pb.rb │ │ ├── audience_service.rb │ │ ├── audience_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── audience_service_pb.rb │ │ ├── audience_service_services_pb.rb │ │ ├── batch_job_service.rb │ │ ├── batch_job_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ ├── operations.rb │ │ └── paths.rb │ │ ├── batch_job_service_pb.rb │ │ ├── batch_job_service_services_pb.rb │ │ ├── bidding_data_exclusion_service.rb │ │ ├── bidding_data_exclusion_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── bidding_data_exclusion_service_pb.rb │ │ ├── bidding_data_exclusion_service_services_pb.rb │ │ ├── bidding_seasonality_adjustment_service.rb │ │ ├── bidding_seasonality_adjustment_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── bidding_seasonality_adjustment_service_pb.rb │ │ ├── bidding_seasonality_adjustment_service_services_pb.rb │ │ ├── bidding_strategy_service.rb │ │ ├── bidding_strategy_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── bidding_strategy_service_pb.rb │ │ ├── bidding_strategy_service_services_pb.rb │ │ ├── billing_setup_service.rb │ │ ├── billing_setup_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── billing_setup_service_pb.rb │ │ ├── billing_setup_service_services_pb.rb │ │ ├── brand_suggestion_service.rb │ │ ├── brand_suggestion_service │ │ ├── client.rb │ │ └── credentials.rb │ │ ├── brand_suggestion_service_pb.rb │ │ ├── brand_suggestion_service_services_pb.rb │ │ ├── campaign_asset_service.rb │ │ ├── campaign_asset_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── campaign_asset_service_pb.rb │ │ ├── campaign_asset_service_services_pb.rb │ │ ├── campaign_asset_set_service.rb │ │ ├── campaign_asset_set_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── campaign_asset_set_service_pb.rb │ │ ├── campaign_asset_set_service_services_pb.rb │ │ ├── campaign_bid_modifier_service.rb │ │ ├── campaign_bid_modifier_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── campaign_bid_modifier_service_pb.rb │ │ ├── campaign_bid_modifier_service_services_pb.rb │ │ ├── campaign_budget_service.rb │ │ ├── campaign_budget_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── campaign_budget_service_pb.rb │ │ ├── campaign_budget_service_services_pb.rb │ │ ├── campaign_conversion_goal_service.rb │ │ ├── campaign_conversion_goal_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── campaign_conversion_goal_service_pb.rb │ │ ├── campaign_conversion_goal_service_services_pb.rb │ │ ├── campaign_criterion_service.rb │ │ ├── campaign_criterion_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── campaign_criterion_service_pb.rb │ │ ├── campaign_criterion_service_services_pb.rb │ │ ├── campaign_customizer_service.rb │ │ ├── campaign_customizer_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── campaign_customizer_service_pb.rb │ │ ├── campaign_customizer_service_services_pb.rb │ │ ├── campaign_draft_service.rb │ │ ├── campaign_draft_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ ├── operations.rb │ │ └── paths.rb │ │ ├── campaign_draft_service_pb.rb │ │ ├── campaign_draft_service_services_pb.rb │ │ ├── campaign_group_service.rb │ │ ├── campaign_group_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── campaign_group_service_pb.rb │ │ ├── campaign_group_service_services_pb.rb │ │ ├── campaign_label_service.rb │ │ ├── campaign_label_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── campaign_label_service_pb.rb │ │ ├── campaign_label_service_services_pb.rb │ │ ├── campaign_lifecycle_goal_service.rb │ │ ├── campaign_lifecycle_goal_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── campaign_lifecycle_goal_service_pb.rb │ │ ├── campaign_lifecycle_goal_service_services_pb.rb │ │ ├── campaign_service.rb │ │ ├── campaign_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── campaign_service_pb.rb │ │ ├── campaign_service_services_pb.rb │ │ ├── campaign_shared_set_service.rb │ │ ├── campaign_shared_set_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── campaign_shared_set_service_pb.rb │ │ ├── campaign_shared_set_service_services_pb.rb │ │ ├── content_creator_insights_service.rb │ │ ├── content_creator_insights_service │ │ ├── client.rb │ │ └── credentials.rb │ │ ├── content_creator_insights_service_pb.rb │ │ ├── content_creator_insights_service_services_pb.rb │ │ ├── conversion_action_service.rb │ │ ├── conversion_action_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── conversion_action_service_pb.rb │ │ ├── conversion_action_service_services_pb.rb │ │ ├── conversion_adjustment_upload_service.rb │ │ ├── conversion_adjustment_upload_service │ │ ├── client.rb │ │ └── credentials.rb │ │ ├── conversion_adjustment_upload_service_pb.rb │ │ ├── conversion_adjustment_upload_service_services_pb.rb │ │ ├── conversion_custom_variable_service.rb │ │ ├── conversion_custom_variable_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── conversion_custom_variable_service_pb.rb │ │ ├── conversion_custom_variable_service_services_pb.rb │ │ ├── conversion_goal_campaign_config_service.rb │ │ ├── conversion_goal_campaign_config_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── conversion_goal_campaign_config_service_pb.rb │ │ ├── conversion_goal_campaign_config_service_services_pb.rb │ │ ├── conversion_upload_service.rb │ │ ├── conversion_upload_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── conversion_upload_service_pb.rb │ │ ├── conversion_upload_service_services_pb.rb │ │ ├── conversion_value_rule_service.rb │ │ ├── conversion_value_rule_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── conversion_value_rule_service_pb.rb │ │ ├── conversion_value_rule_service_services_pb.rb │ │ ├── conversion_value_rule_set_service.rb │ │ ├── conversion_value_rule_set_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── conversion_value_rule_set_service_pb.rb │ │ ├── conversion_value_rule_set_service_services_pb.rb │ │ ├── custom_audience_service.rb │ │ ├── custom_audience_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── custom_audience_service_pb.rb │ │ ├── custom_audience_service_services_pb.rb │ │ ├── custom_conversion_goal_service.rb │ │ ├── custom_conversion_goal_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── custom_conversion_goal_service_pb.rb │ │ ├── custom_conversion_goal_service_services_pb.rb │ │ ├── custom_interest_service.rb │ │ ├── custom_interest_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── custom_interest_service_pb.rb │ │ ├── custom_interest_service_services_pb.rb │ │ ├── customer_asset_service.rb │ │ ├── customer_asset_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── customer_asset_service_pb.rb │ │ ├── customer_asset_service_services_pb.rb │ │ ├── customer_asset_set_service.rb │ │ ├── customer_asset_set_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── customer_asset_set_service_pb.rb │ │ ├── customer_asset_set_service_services_pb.rb │ │ ├── customer_client_link_service.rb │ │ ├── customer_client_link_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── customer_client_link_service_pb.rb │ │ ├── customer_client_link_service_services_pb.rb │ │ ├── customer_conversion_goal_service.rb │ │ ├── customer_conversion_goal_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── customer_conversion_goal_service_pb.rb │ │ ├── customer_conversion_goal_service_services_pb.rb │ │ ├── customer_customizer_service.rb │ │ ├── customer_customizer_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── customer_customizer_service_pb.rb │ │ ├── customer_customizer_service_services_pb.rb │ │ ├── customer_label_service.rb │ │ ├── customer_label_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── customer_label_service_pb.rb │ │ ├── customer_label_service_services_pb.rb │ │ ├── customer_lifecycle_goal_service.rb │ │ ├── customer_lifecycle_goal_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── customer_lifecycle_goal_service_pb.rb │ │ ├── customer_lifecycle_goal_service_services_pb.rb │ │ ├── customer_manager_link_service.rb │ │ ├── customer_manager_link_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── customer_manager_link_service_pb.rb │ │ ├── customer_manager_link_service_services_pb.rb │ │ ├── customer_negative_criterion_service.rb │ │ ├── customer_negative_criterion_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── customer_negative_criterion_service_pb.rb │ │ ├── customer_negative_criterion_service_services_pb.rb │ │ ├── customer_service.rb │ │ ├── customer_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── customer_service_pb.rb │ │ ├── customer_service_services_pb.rb │ │ ├── customer_sk_ad_network_conversion_value_schema_service.rb │ │ ├── customer_sk_ad_network_conversion_value_schema_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── customer_sk_ad_network_conversion_value_schema_service_pb.rb │ │ ├── customer_sk_ad_network_conversion_value_schema_service_services_pb.rb │ │ ├── customer_user_access_invitation_service.rb │ │ ├── customer_user_access_invitation_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── customer_user_access_invitation_service_pb.rb │ │ ├── customer_user_access_invitation_service_services_pb.rb │ │ ├── customer_user_access_service.rb │ │ ├── customer_user_access_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── customer_user_access_service_pb.rb │ │ ├── customer_user_access_service_services_pb.rb │ │ ├── customizer_attribute_service.rb │ │ ├── customizer_attribute_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── customizer_attribute_service_pb.rb │ │ ├── customizer_attribute_service_services_pb.rb │ │ ├── data_link_service.rb │ │ ├── data_link_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── data_link_service_pb.rb │ │ ├── data_link_service_services_pb.rb │ │ ├── experiment_arm_service.rb │ │ ├── experiment_arm_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── experiment_arm_service_pb.rb │ │ ├── experiment_arm_service_services_pb.rb │ │ ├── experiment_service.rb │ │ ├── experiment_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ ├── operations.rb │ │ └── paths.rb │ │ ├── experiment_service_pb.rb │ │ ├── experiment_service_services_pb.rb │ │ ├── geo_target_constant_service.rb │ │ ├── geo_target_constant_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── geo_target_constant_service_pb.rb │ │ ├── geo_target_constant_service_services_pb.rb │ │ ├── google_ads_field_service.rb │ │ ├── google_ads_field_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── google_ads_field_service_pb.rb │ │ ├── google_ads_field_service_services_pb.rb │ │ ├── google_ads_service.rb │ │ ├── google_ads_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── google_ads_service_pb.rb │ │ ├── google_ads_service_services_pb.rb │ │ ├── identity_verification_service.rb │ │ ├── identity_verification_service │ │ ├── client.rb │ │ └── credentials.rb │ │ ├── identity_verification_service_pb.rb │ │ ├── identity_verification_service_services_pb.rb │ │ ├── invoice_service.rb │ │ ├── invoice_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── invoice_service_pb.rb │ │ ├── invoice_service_services_pb.rb │ │ ├── keyword_plan_ad_group_keyword_service.rb │ │ ├── keyword_plan_ad_group_keyword_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── keyword_plan_ad_group_keyword_service_pb.rb │ │ ├── keyword_plan_ad_group_keyword_service_services_pb.rb │ │ ├── keyword_plan_ad_group_service.rb │ │ ├── keyword_plan_ad_group_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── keyword_plan_ad_group_service_pb.rb │ │ ├── keyword_plan_ad_group_service_services_pb.rb │ │ ├── keyword_plan_campaign_keyword_service.rb │ │ ├── keyword_plan_campaign_keyword_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── keyword_plan_campaign_keyword_service_pb.rb │ │ ├── keyword_plan_campaign_keyword_service_services_pb.rb │ │ ├── keyword_plan_campaign_service.rb │ │ ├── keyword_plan_campaign_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── keyword_plan_campaign_service_pb.rb │ │ ├── keyword_plan_campaign_service_services_pb.rb │ │ ├── keyword_plan_idea_service.rb │ │ ├── keyword_plan_idea_service │ │ ├── client.rb │ │ └── credentials.rb │ │ ├── keyword_plan_idea_service_pb.rb │ │ ├── keyword_plan_idea_service_services_pb.rb │ │ ├── keyword_plan_service.rb │ │ ├── keyword_plan_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── keyword_plan_service_pb.rb │ │ ├── keyword_plan_service_services_pb.rb │ │ ├── keyword_theme_constant_service.rb │ │ ├── keyword_theme_constant_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── keyword_theme_constant_service_pb.rb │ │ ├── keyword_theme_constant_service_services_pb.rb │ │ ├── label_service.rb │ │ ├── label_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── label_service_pb.rb │ │ ├── label_service_services_pb.rb │ │ ├── local_services_lead_service.rb │ │ ├── local_services_lead_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── local_services_lead_service_pb.rb │ │ ├── local_services_lead_service_services_pb.rb │ │ ├── offline_user_data_job_service.rb │ │ ├── offline_user_data_job_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ ├── operations.rb │ │ └── paths.rb │ │ ├── offline_user_data_job_service_pb.rb │ │ ├── offline_user_data_job_service_services_pb.rb │ │ ├── payments_account_service.rb │ │ ├── payments_account_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── payments_account_service_pb.rb │ │ ├── payments_account_service_services_pb.rb │ │ ├── product_link_invitation_service.rb │ │ ├── product_link_invitation_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── product_link_invitation_service_pb.rb │ │ ├── product_link_invitation_service_services_pb.rb │ │ ├── product_link_service.rb │ │ ├── product_link_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── product_link_service_pb.rb │ │ ├── product_link_service_services_pb.rb │ │ ├── reach_plan_service.rb │ │ ├── reach_plan_service │ │ ├── client.rb │ │ └── credentials.rb │ │ ├── reach_plan_service_pb.rb │ │ ├── reach_plan_service_services_pb.rb │ │ ├── recommendation_service.rb │ │ ├── recommendation_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── recommendation_service_pb.rb │ │ ├── recommendation_service_services_pb.rb │ │ ├── recommendation_subscription_service.rb │ │ ├── recommendation_subscription_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── recommendation_subscription_service_pb.rb │ │ ├── recommendation_subscription_service_services_pb.rb │ │ ├── remarketing_action_service.rb │ │ ├── remarketing_action_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── remarketing_action_service_pb.rb │ │ ├── remarketing_action_service_services_pb.rb │ │ ├── shareable_preview_service.rb │ │ ├── shareable_preview_service │ │ ├── client.rb │ │ └── credentials.rb │ │ ├── shareable_preview_service_pb.rb │ │ ├── shareable_preview_service_services_pb.rb │ │ ├── shared_criterion_service.rb │ │ ├── shared_criterion_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── shared_criterion_service_pb.rb │ │ ├── shared_criterion_service_services_pb.rb │ │ ├── shared_set_service.rb │ │ ├── shared_set_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── shared_set_service_pb.rb │ │ ├── shared_set_service_services_pb.rb │ │ ├── smart_campaign_setting_service.rb │ │ ├── smart_campaign_setting_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── smart_campaign_setting_service_pb.rb │ │ ├── smart_campaign_setting_service_services_pb.rb │ │ ├── smart_campaign_suggest_service.rb │ │ ├── smart_campaign_suggest_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── smart_campaign_suggest_service_pb.rb │ │ ├── smart_campaign_suggest_service_services_pb.rb │ │ ├── third_party_app_analytics_link_service.rb │ │ ├── third_party_app_analytics_link_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── third_party_app_analytics_link_service_pb.rb │ │ ├── third_party_app_analytics_link_service_services_pb.rb │ │ ├── travel_asset_suggestion_service.rb │ │ ├── travel_asset_suggestion_service │ │ ├── client.rb │ │ └── credentials.rb │ │ ├── travel_asset_suggestion_service_pb.rb │ │ ├── travel_asset_suggestion_service_services_pb.rb │ │ ├── user_data_service.rb │ │ ├── user_data_service │ │ ├── client.rb │ │ └── credentials.rb │ │ ├── user_data_service_pb.rb │ │ ├── user_data_service_services_pb.rb │ │ ├── user_list_customer_type_service.rb │ │ ├── user_list_customer_type_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── user_list_customer_type_service_pb.rb │ │ ├── user_list_customer_type_service_services_pb.rb │ │ ├── user_list_service.rb │ │ ├── user_list_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── user_list_service_pb.rb │ │ └── user_list_service_services_pb.rb │ ├── v21 │ ├── common │ │ ├── ad_asset_pb.rb │ │ ├── ad_type_infos_pb.rb │ │ ├── additional_application_info_pb.rb │ │ ├── asset_policy_pb.rb │ │ ├── asset_set_types_pb.rb │ │ ├── asset_types_pb.rb │ │ ├── asset_usage_pb.rb │ │ ├── audience_insights_attribute_pb.rb │ │ ├── audiences_pb.rb │ │ ├── bidding_pb.rb │ │ ├── click_location_pb.rb │ │ ├── consent_pb.rb │ │ ├── criteria_pb.rb │ │ ├── criterion_category_availability_pb.rb │ │ ├── custom_parameter_pb.rb │ │ ├── customizer_value_pb.rb │ │ ├── dates_pb.rb │ │ ├── extensions_pb.rb │ │ ├── feed_common_pb.rb │ │ ├── final_app_url_pb.rb │ │ ├── frequency_cap_pb.rb │ │ ├── keyword_plan_common_pb.rb │ │ ├── lifecycle_goals_pb.rb │ │ ├── local_services_pb.rb │ │ ├── metric_goal_pb.rb │ │ ├── metrics_pb.rb │ │ ├── offline_user_data_pb.rb │ │ ├── policy_pb.rb │ │ ├── policy_summary_pb.rb │ │ ├── real_time_bidding_setting_pb.rb │ │ ├── segments_pb.rb │ │ ├── simulation_pb.rb │ │ ├── tag_snippet_pb.rb │ │ ├── targeting_setting_pb.rb │ │ ├── text_label_pb.rb │ │ ├── third_party_integration_partners_pb.rb │ │ ├── url_collection_pb.rb │ │ ├── user_lists_pb.rb │ │ └── value_pb.rb │ ├── enums │ │ ├── access_invitation_status_pb.rb │ │ ├── access_reason_pb.rb │ │ ├── access_role_pb.rb │ │ ├── account_budget_proposal_status_pb.rb │ │ ├── account_budget_proposal_type_pb.rb │ │ ├── account_budget_status_pb.rb │ │ ├── account_link_status_pb.rb │ │ ├── ad_destination_type_pb.rb │ │ ├── ad_format_type_pb.rb │ │ ├── ad_group_ad_primary_status_pb.rb │ │ ├── ad_group_ad_primary_status_reason_pb.rb │ │ ├── ad_group_ad_rotation_mode_pb.rb │ │ ├── ad_group_ad_status_pb.rb │ │ ├── ad_group_criterion_approval_status_pb.rb │ │ ├── ad_group_criterion_primary_status_pb.rb │ │ ├── ad_group_criterion_primary_status_reason_pb.rb │ │ ├── ad_group_criterion_status_pb.rb │ │ ├── ad_group_primary_status_pb.rb │ │ ├── ad_group_primary_status_reason_pb.rb │ │ ├── ad_group_status_pb.rb │ │ ├── ad_group_type_pb.rb │ │ ├── ad_network_type_pb.rb │ │ ├── ad_serving_optimization_status_pb.rb │ │ ├── ad_strength_action_item_type_pb.rb │ │ ├── ad_strength_pb.rb │ │ ├── ad_type_pb.rb │ │ ├── advertising_channel_sub_type_pb.rb │ │ ├── advertising_channel_type_pb.rb │ │ ├── age_range_type_pb.rb │ │ ├── android_privacy_interaction_type_pb.rb │ │ ├── android_privacy_network_type_pb.rb │ │ ├── app_bidding_goal_pb.rb │ │ ├── app_campaign_app_store_pb.rb │ │ ├── app_campaign_bidding_strategy_goal_type_pb.rb │ │ ├── app_payment_model_type_pb.rb │ │ ├── app_url_operating_system_type_pb.rb │ │ ├── application_instance_pb.rb │ │ ├── asset_automation_status_pb.rb │ │ ├── asset_automation_type_pb.rb │ │ ├── asset_coverage_video_aspect_ratio_requirement_pb.rb │ │ ├── asset_field_type_pb.rb │ │ ├── asset_group_primary_status_pb.rb │ │ ├── asset_group_primary_status_reason_pb.rb │ │ ├── asset_group_signal_approval_status_pb.rb │ │ ├── asset_group_status_pb.rb │ │ ├── asset_link_primary_status_pb.rb │ │ ├── asset_link_primary_status_reason_pb.rb │ │ ├── asset_link_status_pb.rb │ │ ├── asset_offline_evaluation_error_reasons_pb.rb │ │ ├── asset_performance_label_pb.rb │ │ ├── asset_set_asset_status_pb.rb │ │ ├── asset_set_link_status_pb.rb │ │ ├── asset_set_status_pb.rb │ │ ├── asset_set_type_pb.rb │ │ ├── asset_source_pb.rb │ │ ├── asset_type_pb.rb │ │ ├── async_action_status_pb.rb │ │ ├── attribution_model_pb.rb │ │ ├── audience_insights_dimension_pb.rb │ │ ├── audience_insights_marketing_objective_pb.rb │ │ ├── audience_scope_pb.rb │ │ ├── audience_status_pb.rb │ │ ├── batch_job_status_pb.rb │ │ ├── bid_modifier_source_pb.rb │ │ ├── bidding_source_pb.rb │ │ ├── bidding_strategy_status_pb.rb │ │ ├── bidding_strategy_system_status_pb.rb │ │ ├── bidding_strategy_type_pb.rb │ │ ├── billing_setup_status_pb.rb │ │ ├── brand_request_rejection_reason_pb.rb │ │ ├── brand_safety_suitability_pb.rb │ │ ├── brand_state_pb.rb │ │ ├── budget_campaign_association_status_pb.rb │ │ ├── budget_delivery_method_pb.rb │ │ ├── budget_period_pb.rb │ │ ├── budget_status_pb.rb │ │ ├── budget_type_pb.rb │ │ ├── business_message_call_to_action_type_pb.rb │ │ ├── business_message_provider_pb.rb │ │ ├── call_conversion_reporting_state_pb.rb │ │ ├── call_to_action_type_pb.rb │ │ ├── call_tracking_display_location_pb.rb │ │ ├── call_type_pb.rb │ │ ├── campaign_criterion_status_pb.rb │ │ ├── campaign_draft_status_pb.rb │ │ ├── campaign_experiment_type_pb.rb │ │ ├── campaign_group_status_pb.rb │ │ ├── campaign_keyword_match_type_pb.rb │ │ ├── campaign_primary_status_pb.rb │ │ ├── campaign_primary_status_reason_pb.rb │ │ ├── campaign_serving_status_pb.rb │ │ ├── campaign_shared_set_status_pb.rb │ │ ├── campaign_status_pb.rb │ │ ├── chain_relationship_type_pb.rb │ │ ├── change_client_type_pb.rb │ │ ├── change_event_resource_type_pb.rb │ │ ├── change_status_operation_pb.rb │ │ ├── change_status_resource_type_pb.rb │ │ ├── click_type_pb.rb │ │ ├── combined_audience_status_pb.rb │ │ ├── consent_status_pb.rb │ │ ├── content_label_type_pb.rb │ │ ├── conversion_action_category_pb.rb │ │ ├── conversion_action_counting_type_pb.rb │ │ ├── conversion_action_status_pb.rb │ │ ├── conversion_action_type_pb.rb │ │ ├── conversion_adjustment_type_pb.rb │ │ ├── conversion_attribution_event_type_pb.rb │ │ ├── conversion_custom_variable_status_pb.rb │ │ ├── conversion_customer_type_pb.rb │ │ ├── conversion_environment_enum_pb.rb │ │ ├── conversion_lag_bucket_pb.rb │ │ ├── conversion_or_adjustment_lag_bucket_pb.rb │ │ ├── conversion_origin_pb.rb │ │ ├── conversion_tracking_status_enum_pb.rb │ │ ├── conversion_value_rule_primary_dimension_pb.rb │ │ ├── conversion_value_rule_set_status_pb.rb │ │ ├── conversion_value_rule_status_pb.rb │ │ ├── converting_user_prior_engagement_type_and_ltv_bucket_pb.rb │ │ ├── criterion_category_channel_availability_mode_pb.rb │ │ ├── criterion_category_locale_availability_mode_pb.rb │ │ ├── criterion_system_serving_status_pb.rb │ │ ├── criterion_type_pb.rb │ │ ├── custom_audience_member_type_pb.rb │ │ ├── custom_audience_status_pb.rb │ │ ├── custom_audience_type_pb.rb │ │ ├── custom_conversion_goal_status_pb.rb │ │ ├── custom_interest_member_type_pb.rb │ │ ├── custom_interest_status_pb.rb │ │ ├── custom_interest_type_pb.rb │ │ ├── customer_acquisition_optimization_mode_pb.rb │ │ ├── customer_match_upload_key_type_pb.rb │ │ ├── customer_pay_per_conversion_eligibility_failure_reason_pb.rb │ │ ├── customer_status_pb.rb │ │ ├── customizer_attribute_status_pb.rb │ │ ├── customizer_attribute_type_pb.rb │ │ ├── customizer_value_status_pb.rb │ │ ├── data_driven_model_status_pb.rb │ │ ├── data_link_status_pb.rb │ │ ├── data_link_type_pb.rb │ │ ├── day_of_week_pb.rb │ │ ├── demand_gen_channel_config_pb.rb │ │ ├── demand_gen_channel_strategy_pb.rb │ │ ├── device_pb.rb │ │ ├── display_ad_format_setting_pb.rb │ │ ├── display_upload_product_type_pb.rb │ │ ├── distance_bucket_pb.rb │ │ ├── eu_political_advertising_status_pb.rb │ │ ├── experiment_metric_direction_pb.rb │ │ ├── experiment_metric_pb.rb │ │ ├── experiment_status_pb.rb │ │ ├── experiment_type_pb.rb │ │ ├── external_conversion_source_pb.rb │ │ ├── fixed_cpm_goal_pb.rb │ │ ├── fixed_cpm_target_frequency_time_unit_pb.rb │ │ ├── frequency_cap_event_type_pb.rb │ │ ├── frequency_cap_level_pb.rb │ │ ├── frequency_cap_time_unit_pb.rb │ │ ├── gender_type_pb.rb │ │ ├── geo_target_constant_status_pb.rb │ │ ├── geo_targeting_type_pb.rb │ │ ├── goal_config_level_pb.rb │ │ ├── google_ads_field_category_pb.rb │ │ ├── google_ads_field_data_type_pb.rb │ │ ├── google_voice_call_status_pb.rb │ │ ├── hotel_asset_suggestion_status_pb.rb │ │ ├── hotel_date_selection_type_pb.rb │ │ ├── hotel_price_bucket_pb.rb │ │ ├── hotel_rate_type_pb.rb │ │ ├── hotel_reconciliation_status_pb.rb │ │ ├── identity_verification_program_pb.rb │ │ ├── identity_verification_program_status_pb.rb │ │ ├── income_range_type_pb.rb │ │ ├── insights_knowledge_graph_entity_capabilities_pb.rb │ │ ├── insights_trend_pb.rb │ │ ├── interaction_event_type_pb.rb │ │ ├── interaction_type_pb.rb │ │ ├── invoice_type_pb.rb │ │ ├── keyword_match_type_pb.rb │ │ ├── keyword_plan_aggregate_metric_type_pb.rb │ │ ├── keyword_plan_competition_level_pb.rb │ │ ├── keyword_plan_concept_group_type_pb.rb │ │ ├── keyword_plan_forecast_interval_pb.rb │ │ ├── keyword_plan_keyword_annotation_pb.rb │ │ ├── keyword_plan_network_pb.rb │ │ ├── label_status_pb.rb │ │ ├── landing_page_source_pb.rb │ │ ├── lead_form_call_to_action_type_pb.rb │ │ ├── lead_form_desired_intent_pb.rb │ │ ├── lead_form_field_user_input_type_pb.rb │ │ ├── lead_form_post_submit_call_to_action_type_pb.rb │ │ ├── legacy_app_install_ad_app_store_pb.rb │ │ ├── linked_account_type_pb.rb │ │ ├── linked_product_type_pb.rb │ │ ├── listing_group_filter_custom_attribute_index_pb.rb │ │ ├── listing_group_filter_listing_source_pb.rb │ │ ├── listing_group_filter_product_category_level_pb.rb │ │ ├── listing_group_filter_product_channel_pb.rb │ │ ├── listing_group_filter_product_condition_pb.rb │ │ ├── listing_group_filter_product_type_level_pb.rb │ │ ├── listing_group_filter_type_enum_pb.rb │ │ ├── listing_group_type_pb.rb │ │ ├── listing_type_pb.rb │ │ ├── local_services_business_registration_check_rejection_reason_pb.rb │ │ ├── local_services_business_registration_type_pb.rb │ │ ├── local_services_conversation_type_pb.rb │ │ ├── local_services_employee_status_pb.rb │ │ ├── local_services_employee_type_pb.rb │ │ ├── local_services_insurance_rejection_reason_pb.rb │ │ ├── local_services_lead_credit_issuance_decision_pb.rb │ │ ├── local_services_lead_credit_state_pb.rb │ │ ├── local_services_lead_status_pb.rb │ │ ├── local_services_lead_survey_answer_pb.rb │ │ ├── local_services_lead_survey_dissatisfied_reason_pb.rb │ │ ├── local_services_lead_survey_satisfied_reason_pb.rb │ │ ├── local_services_lead_type_pb.rb │ │ ├── local_services_license_rejection_reason_pb.rb │ │ ├── local_services_participant_type_pb.rb │ │ ├── local_services_verification_artifact_status_pb.rb │ │ ├── local_services_verification_artifact_type_pb.rb │ │ ├── local_services_verification_status_pb.rb │ │ ├── location_group_radius_units_pb.rb │ │ ├── location_ownership_type_pb.rb │ │ ├── location_source_type_pb.rb │ │ ├── location_string_filter_type_pb.rb │ │ ├── lookalike_expansion_level_pb.rb │ │ ├── manager_link_status_pb.rb │ │ ├── match_type_pb.rb │ │ ├── media_type_pb.rb │ │ ├── mime_type_pb.rb │ │ ├── minute_of_hour_pb.rb │ │ ├── mobile_app_vendor_pb.rb │ │ ├── mobile_device_type_pb.rb │ │ ├── month_of_year_pb.rb │ │ ├── negative_geo_target_type_pb.rb │ │ ├── non_skippable_max_duration_pb.rb │ │ ├── non_skippable_min_duration_pb.rb │ │ ├── offline_conversion_diagnostic_status_enum_pb.rb │ │ ├── offline_event_upload_client_enum_pb.rb │ │ ├── offline_user_data_job_failure_reason_pb.rb │ │ ├── offline_user_data_job_match_rate_range_pb.rb │ │ ├── offline_user_data_job_status_pb.rb │ │ ├── offline_user_data_job_type_pb.rb │ │ ├── operating_system_version_operator_type_pb.rb │ │ ├── optimization_goal_type_pb.rb │ │ ├── parental_status_type_pb.rb │ │ ├── payment_mode_pb.rb │ │ ├── performance_max_upgrade_status_pb.rb │ │ ├── placement_type_pb.rb │ │ ├── policy_approval_status_pb.rb │ │ ├── policy_review_status_pb.rb │ │ ├── policy_topic_entry_type_pb.rb │ │ ├── policy_topic_evidence_destination_mismatch_url_type_pb.rb │ │ ├── policy_topic_evidence_destination_not_working_device_pb.rb │ │ ├── policy_topic_evidence_destination_not_working_dns_error_type_pb.rb │ │ ├── positive_geo_target_type_pb.rb │ │ ├── price_extension_price_qualifier_pb.rb │ │ ├── price_extension_price_unit_pb.rb │ │ ├── price_extension_type_pb.rb │ │ ├── product_availability_pb.rb │ │ ├── product_category_level_pb.rb │ │ ├── product_category_state_pb.rb │ │ ├── product_channel_exclusivity_pb.rb │ │ ├── product_channel_pb.rb │ │ ├── product_condition_pb.rb │ │ ├── product_custom_attribute_index_pb.rb │ │ ├── product_issue_severity_pb.rb │ │ ├── product_link_invitation_status_pb.rb │ │ ├── product_status_pb.rb │ │ ├── product_type_level_pb.rb │ │ ├── promotion_barcode_type_pb.rb │ │ ├── promotion_extension_discount_modifier_pb.rb │ │ ├── promotion_extension_occasion_pb.rb │ │ ├── proximity_radius_units_pb.rb │ │ ├── quality_score_bucket_pb.rb │ │ ├── reach_plan_age_range_pb.rb │ │ ├── reach_plan_conversion_rate_model_pb.rb │ │ ├── reach_plan_network_pb.rb │ │ ├── reach_plan_plannable_user_list_status_pb.rb │ │ ├── reach_plan_surface_pb.rb │ │ ├── recommendation_subscription_status_pb.rb │ │ ├── recommendation_type_pb.rb │ │ ├── resource_change_operation_pb.rb │ │ ├── resource_limit_type_pb.rb │ │ ├── response_content_type_pb.rb │ │ ├── search_engine_results_page_type_pb.rb │ │ ├── search_term_match_source_pb.rb │ │ ├── search_term_match_type_pb.rb │ │ ├── search_term_targeting_status_pb.rb │ │ ├── seasonality_event_scope_pb.rb │ │ ├── seasonality_event_status_pb.rb │ │ ├── served_asset_field_type_pb.rb │ │ ├── shared_set_status_pb.rb │ │ ├── shared_set_type_pb.rb │ │ ├── shopping_add_products_to_campaign_recommendation_enum_pb.rb │ │ ├── simulation_modification_method_pb.rb │ │ ├── simulation_type_pb.rb │ │ ├── sk_ad_network_ad_event_type_pb.rb │ │ ├── sk_ad_network_attribution_credit_pb.rb │ │ ├── sk_ad_network_coarse_conversion_value_pb.rb │ │ ├── sk_ad_network_source_type_pb.rb │ │ ├── sk_ad_network_user_type_pb.rb │ │ ├── slot_pb.rb │ │ ├── smart_campaign_not_eligible_reason_pb.rb │ │ ├── smart_campaign_status_pb.rb │ │ ├── spending_limit_type_pb.rb │ │ ├── summary_row_setting_pb.rb │ │ ├── system_managed_entity_source_pb.rb │ │ ├── target_cpa_opt_in_recommendation_goal_pb.rb │ │ ├── target_frequency_time_unit_pb.rb │ │ ├── target_impression_share_location_pb.rb │ │ ├── targeting_dimension_pb.rb │ │ ├── third_party_brand_lift_integration_partner_pb.rb │ │ ├── third_party_brand_safety_integration_partner_pb.rb │ │ ├── third_party_reach_integration_partner_pb.rb │ │ ├── third_party_viewability_integration_partner_pb.rb │ │ ├── time_type_pb.rb │ │ ├── tracking_code_page_format_pb.rb │ │ ├── tracking_code_type_pb.rb │ │ ├── user_identifier_source_pb.rb │ │ ├── user_interest_taxonomy_type_pb.rb │ │ ├── user_list_access_status_pb.rb │ │ ├── user_list_closing_reason_pb.rb │ │ ├── user_list_crm_data_source_type_pb.rb │ │ ├── user_list_customer_type_category_pb.rb │ │ ├── user_list_date_rule_item_operator_pb.rb │ │ ├── user_list_flexible_rule_operator_pb.rb │ │ ├── user_list_logical_rule_operator_pb.rb │ │ ├── user_list_membership_status_pb.rb │ │ ├── user_list_number_rule_item_operator_pb.rb │ │ ├── user_list_prepopulation_status_pb.rb │ │ ├── user_list_rule_type_pb.rb │ │ ├── user_list_size_range_pb.rb │ │ ├── user_list_string_rule_item_operator_pb.rb │ │ ├── user_list_type_pb.rb │ │ ├── value_rule_device_type_pb.rb │ │ ├── value_rule_geo_location_match_type_pb.rb │ │ ├── value_rule_operation_pb.rb │ │ ├── value_rule_set_attachment_type_pb.rb │ │ ├── value_rule_set_dimension_pb.rb │ │ ├── vanity_pharma_display_url_mode_pb.rb │ │ ├── vanity_pharma_text_pb.rb │ │ ├── video_ad_format_restriction_pb.rb │ │ ├── video_ad_sequence_interaction_type_pb.rb │ │ ├── video_ad_sequence_minimum_duration_pb.rb │ │ ├── video_thumbnail_pb.rb │ │ ├── webpage_condition_operand_pb.rb │ │ └── webpage_condition_operator_pb.rb │ ├── errors │ │ ├── access_invitation_error_pb.rb │ │ ├── account_budget_proposal_error_pb.rb │ │ ├── account_link_error_pb.rb │ │ ├── ad_customizer_error_pb.rb │ │ ├── ad_error_pb.rb │ │ ├── ad_group_ad_error_pb.rb │ │ ├── ad_group_bid_modifier_error_pb.rb │ │ ├── ad_group_criterion_customizer_error_pb.rb │ │ ├── ad_group_criterion_error_pb.rb │ │ ├── ad_group_customizer_error_pb.rb │ │ ├── ad_group_error_pb.rb │ │ ├── ad_group_feed_error_pb.rb │ │ ├── ad_parameter_error_pb.rb │ │ ├── ad_sharing_error_pb.rb │ │ ├── adx_error_pb.rb │ │ ├── asset_error_pb.rb │ │ ├── asset_group_asset_error_pb.rb │ │ ├── asset_group_error_pb.rb │ │ ├── asset_group_listing_group_filter_error_pb.rb │ │ ├── asset_group_signal_error_pb.rb │ │ ├── asset_link_error_pb.rb │ │ ├── asset_set_asset_error_pb.rb │ │ ├── asset_set_error_pb.rb │ │ ├── asset_set_link_error_pb.rb │ │ ├── audience_error_pb.rb │ │ ├── audience_insights_error_pb.rb │ │ ├── authentication_error_pb.rb │ │ ├── authorization_error_pb.rb │ │ ├── automatically_created_asset_removal_error_pb.rb │ │ ├── batch_job_error_pb.rb │ │ ├── bidding_error_pb.rb │ │ ├── bidding_strategy_error_pb.rb │ │ ├── billing_setup_error_pb.rb │ │ ├── brand_guidelines_migration_error_pb.rb │ │ ├── campaign_budget_error_pb.rb │ │ ├── campaign_conversion_goal_error_pb.rb │ │ ├── campaign_criterion_error_pb.rb │ │ ├── campaign_customizer_error_pb.rb │ │ ├── campaign_draft_error_pb.rb │ │ ├── campaign_error_pb.rb │ │ ├── campaign_experiment_error_pb.rb │ │ ├── campaign_feed_error_pb.rb │ │ ├── campaign_lifecycle_goal_error_pb.rb │ │ ├── campaign_shared_set_error_pb.rb │ │ ├── change_event_error_pb.rb │ │ ├── change_status_error_pb.rb │ │ ├── click_view_error_pb.rb │ │ ├── collection_size_error_pb.rb │ │ ├── context_error_pb.rb │ │ ├── conversion_action_error_pb.rb │ │ ├── conversion_adjustment_upload_error_pb.rb │ │ ├── conversion_custom_variable_error_pb.rb │ │ ├── conversion_goal_campaign_config_error_pb.rb │ │ ├── conversion_upload_error_pb.rb │ │ ├── conversion_value_rule_error_pb.rb │ │ ├── conversion_value_rule_set_error_pb.rb │ │ ├── country_code_error_pb.rb │ │ ├── criterion_error_pb.rb │ │ ├── currency_code_error_pb.rb │ │ ├── currency_error_pb.rb │ │ ├── custom_audience_error_pb.rb │ │ ├── custom_conversion_goal_error_pb.rb │ │ ├── custom_interest_error_pb.rb │ │ ├── customer_client_link_error_pb.rb │ │ ├── customer_customizer_error_pb.rb │ │ ├── customer_error_pb.rb │ │ ├── customer_feed_error_pb.rb │ │ ├── customer_lifecycle_goal_error_pb.rb │ │ ├── customer_manager_link_error_pb.rb │ │ ├── customer_sk_ad_network_conversion_value_schema_error_pb.rb │ │ ├── customer_user_access_error_pb.rb │ │ ├── customizer_attribute_error_pb.rb │ │ ├── data_link_error_pb.rb │ │ ├── database_error_pb.rb │ │ ├── date_error_pb.rb │ │ ├── date_range_error_pb.rb │ │ ├── distinct_error_pb.rb │ │ ├── enum_error_pb.rb │ │ ├── errors_pb.rb │ │ ├── experiment_arm_error_pb.rb │ │ ├── experiment_error_pb.rb │ │ ├── extension_feed_item_error_pb.rb │ │ ├── extension_setting_error_pb.rb │ │ ├── feed_attribute_reference_error_pb.rb │ │ ├── feed_error_pb.rb │ │ ├── feed_item_error_pb.rb │ │ ├── feed_item_set_error_pb.rb │ │ ├── feed_item_set_link_error_pb.rb │ │ ├── feed_item_target_error_pb.rb │ │ ├── feed_item_validation_error_pb.rb │ │ ├── feed_mapping_error_pb.rb │ │ ├── field_error_pb.rb │ │ ├── field_mask_error_pb.rb │ │ ├── final_url_expansion_asset_view_error_pb.rb │ │ ├── function_error_pb.rb │ │ ├── function_parsing_error_pb.rb │ │ ├── geo_target_constant_suggestion_error_pb.rb │ │ ├── header_error_pb.rb │ │ ├── id_error_pb.rb │ │ ├── identity_verification_error_pb.rb │ │ ├── image_error_pb.rb │ │ ├── internal_error_pb.rb │ │ ├── invoice_error_pb.rb │ │ ├── keyword_plan_ad_group_error_pb.rb │ │ ├── keyword_plan_ad_group_keyword_error_pb.rb │ │ ├── keyword_plan_campaign_error_pb.rb │ │ ├── keyword_plan_campaign_keyword_error_pb.rb │ │ ├── keyword_plan_error_pb.rb │ │ ├── keyword_plan_idea_error_pb.rb │ │ ├── label_error_pb.rb │ │ ├── language_code_error_pb.rb │ │ ├── list_operation_error_pb.rb │ │ ├── manager_link_error_pb.rb │ │ ├── media_bundle_error_pb.rb │ │ ├── media_file_error_pb.rb │ │ ├── media_upload_error_pb.rb │ │ ├── merchant_center_error_pb.rb │ │ ├── multiplier_error_pb.rb │ │ ├── mutate_error_pb.rb │ │ ├── new_resource_creation_error_pb.rb │ │ ├── not_allowlisted_error_pb.rb │ │ ├── not_empty_error_pb.rb │ │ ├── null_error_pb.rb │ │ ├── offline_user_data_job_error_pb.rb │ │ ├── operation_access_denied_error_pb.rb │ │ ├── operator_error_pb.rb │ │ ├── partial_failure_error_pb.rb │ │ ├── payments_account_error_pb.rb │ │ ├── policy_finding_error_pb.rb │ │ ├── policy_validation_parameter_error_pb.rb │ │ ├── policy_violation_error_pb.rb │ │ ├── product_link_error_pb.rb │ │ ├── product_link_invitation_error_pb.rb │ │ ├── query_error_pb.rb │ │ ├── quota_error_pb.rb │ │ ├── range_error_pb.rb │ │ ├── reach_plan_error_pb.rb │ │ ├── recommendation_error_pb.rb │ │ ├── recommendation_subscription_error_pb.rb │ │ ├── region_code_error_pb.rb │ │ ├── request_error_pb.rb │ │ ├── resource_access_denied_error_pb.rb │ │ ├── resource_count_limit_exceeded_error_pb.rb │ │ ├── search_term_insight_error_pb.rb │ │ ├── setting_error_pb.rb │ │ ├── shareable_preview_error_pb.rb │ │ ├── shared_criterion_error_pb.rb │ │ ├── shared_set_error_pb.rb │ │ ├── shopping_product_error_pb.rb │ │ ├── size_limit_error_pb.rb │ │ ├── smart_campaign_error_pb.rb │ │ ├── string_format_error_pb.rb │ │ ├── string_length_error_pb.rb │ │ ├── third_party_app_analytics_link_error_pb.rb │ │ ├── time_zone_error_pb.rb │ │ ├── url_field_error_pb.rb │ │ ├── user_data_error_pb.rb │ │ ├── user_list_customer_type_error_pb.rb │ │ ├── user_list_error_pb.rb │ │ ├── video_campaign_error_pb.rb │ │ └── youtube_video_registration_error_pb.rb │ ├── resources │ │ ├── accessible_bidding_strategy_pb.rb │ │ ├── account_budget_pb.rb │ │ ├── account_budget_proposal_pb.rb │ │ ├── account_link_pb.rb │ │ ├── ad_group_ad_asset_combination_view_pb.rb │ │ ├── ad_group_ad_asset_view_pb.rb │ │ ├── ad_group_ad_label_pb.rb │ │ ├── ad_group_ad_pb.rb │ │ ├── ad_group_asset_pb.rb │ │ ├── ad_group_asset_set_pb.rb │ │ ├── ad_group_audience_view_pb.rb │ │ ├── ad_group_bid_modifier_pb.rb │ │ ├── ad_group_criterion_customizer_pb.rb │ │ ├── ad_group_criterion_label_pb.rb │ │ ├── ad_group_criterion_pb.rb │ │ ├── ad_group_criterion_simulation_pb.rb │ │ ├── ad_group_customizer_pb.rb │ │ ├── ad_group_label_pb.rb │ │ ├── ad_group_pb.rb │ │ ├── ad_group_simulation_pb.rb │ │ ├── ad_parameter_pb.rb │ │ ├── ad_pb.rb │ │ ├── ad_schedule_view_pb.rb │ │ ├── age_range_view_pb.rb │ │ ├── ai_max_search_term_ad_combination_view_pb.rb │ │ ├── android_privacy_shared_key_google_ad_group_pb.rb │ │ ├── android_privacy_shared_key_google_campaign_pb.rb │ │ ├── android_privacy_shared_key_google_network_type_pb.rb │ │ ├── asset_field_type_view_pb.rb │ │ ├── asset_group_asset_pb.rb │ │ ├── asset_group_listing_group_filter_pb.rb │ │ ├── asset_group_pb.rb │ │ ├── asset_group_product_group_view_pb.rb │ │ ├── asset_group_signal_pb.rb │ │ ├── asset_group_top_combination_view_pb.rb │ │ ├── asset_pb.rb │ │ ├── asset_set_asset_pb.rb │ │ ├── asset_set_pb.rb │ │ ├── asset_set_type_view_pb.rb │ │ ├── audience_pb.rb │ │ ├── batch_job_pb.rb │ │ ├── bidding_data_exclusion_pb.rb │ │ ├── bidding_seasonality_adjustment_pb.rb │ │ ├── bidding_strategy_pb.rb │ │ ├── bidding_strategy_simulation_pb.rb │ │ ├── billing_setup_pb.rb │ │ ├── call_view_pb.rb │ │ ├── campaign_aggregate_asset_view_pb.rb │ │ ├── campaign_asset_pb.rb │ │ ├── campaign_asset_set_pb.rb │ │ ├── campaign_audience_view_pb.rb │ │ ├── campaign_bid_modifier_pb.rb │ │ ├── campaign_budget_pb.rb │ │ ├── campaign_conversion_goal_pb.rb │ │ ├── campaign_criterion_pb.rb │ │ ├── campaign_customizer_pb.rb │ │ ├── campaign_draft_pb.rb │ │ ├── campaign_group_pb.rb │ │ ├── campaign_label_pb.rb │ │ ├── campaign_lifecycle_goal_pb.rb │ │ ├── campaign_pb.rb │ │ ├── campaign_search_term_insight_pb.rb │ │ ├── campaign_search_term_view_pb.rb │ │ ├── campaign_shared_set_pb.rb │ │ ├── campaign_simulation_pb.rb │ │ ├── carrier_constant_pb.rb │ │ ├── change_event_pb.rb │ │ ├── change_status_pb.rb │ │ ├── channel_aggregate_asset_view_pb.rb │ │ ├── click_view_pb.rb │ │ ├── combined_audience_pb.rb │ │ ├── content_criterion_view_pb.rb │ │ ├── conversion_action_pb.rb │ │ ├── conversion_custom_variable_pb.rb │ │ ├── conversion_goal_campaign_config_pb.rb │ │ ├── conversion_value_rule_pb.rb │ │ ├── conversion_value_rule_set_pb.rb │ │ ├── currency_constant_pb.rb │ │ ├── custom_audience_pb.rb │ │ ├── custom_conversion_goal_pb.rb │ │ ├── custom_interest_pb.rb │ │ ├── customer_asset_pb.rb │ │ ├── customer_asset_set_pb.rb │ │ ├── customer_client_link_pb.rb │ │ ├── customer_client_pb.rb │ │ ├── customer_conversion_goal_pb.rb │ │ ├── customer_customizer_pb.rb │ │ ├── customer_label_pb.rb │ │ ├── customer_lifecycle_goal_pb.rb │ │ ├── customer_manager_link_pb.rb │ │ ├── customer_negative_criterion_pb.rb │ │ ├── customer_pb.rb │ │ ├── customer_search_term_insight_pb.rb │ │ ├── customer_sk_ad_network_conversion_value_schema_pb.rb │ │ ├── customer_user_access_invitation_pb.rb │ │ ├── customer_user_access_pb.rb │ │ ├── customizer_attribute_pb.rb │ │ ├── data_link_pb.rb │ │ ├── detail_content_suitability_placement_view_pb.rb │ │ ├── detail_placement_view_pb.rb │ │ ├── detailed_demographic_pb.rb │ │ ├── display_keyword_view_pb.rb │ │ ├── distance_view_pb.rb │ │ ├── domain_category_pb.rb │ │ ├── dynamic_search_ads_search_term_view_pb.rb │ │ ├── expanded_landing_page_view_pb.rb │ │ ├── experiment_arm_pb.rb │ │ ├── experiment_pb.rb │ │ ├── final_url_expansion_asset_view_pb.rb │ │ ├── gender_view_pb.rb │ │ ├── geo_target_constant_pb.rb │ │ ├── geographic_view_pb.rb │ │ ├── google_ads_field_pb.rb │ │ ├── group_content_suitability_placement_view_pb.rb │ │ ├── group_placement_view_pb.rb │ │ ├── hotel_group_view_pb.rb │ │ ├── hotel_performance_view_pb.rb │ │ ├── hotel_reconciliation_pb.rb │ │ ├── income_range_view_pb.rb │ │ ├── invoice_pb.rb │ │ ├── keyword_plan_ad_group_keyword_pb.rb │ │ ├── keyword_plan_ad_group_pb.rb │ │ ├── keyword_plan_campaign_keyword_pb.rb │ │ ├── keyword_plan_campaign_pb.rb │ │ ├── keyword_plan_pb.rb │ │ ├── keyword_theme_constant_pb.rb │ │ ├── keyword_view_pb.rb │ │ ├── label_pb.rb │ │ ├── landing_page_view_pb.rb │ │ ├── language_constant_pb.rb │ │ ├── lead_form_submission_data_pb.rb │ │ ├── life_event_pb.rb │ │ ├── local_services_employee_pb.rb │ │ ├── local_services_lead_conversation_pb.rb │ │ ├── local_services_lead_pb.rb │ │ ├── local_services_verification_artifact_pb.rb │ │ ├── location_interest_view_pb.rb │ │ ├── location_view_pb.rb │ │ ├── managed_placement_view_pb.rb │ │ ├── media_file_pb.rb │ │ ├── mobile_app_category_constant_pb.rb │ │ ├── mobile_device_constant_pb.rb │ │ ├── offline_conversion_upload_client_summary_pb.rb │ │ ├── offline_conversion_upload_conversion_action_summary_pb.rb │ │ ├── offline_user_data_job_pb.rb │ │ ├── operating_system_version_constant_pb.rb │ │ ├── paid_organic_search_term_view_pb.rb │ │ ├── parental_status_view_pb.rb │ │ ├── payments_account_pb.rb │ │ ├── per_store_view_pb.rb │ │ ├── performance_max_placement_view_pb.rb │ │ ├── product_category_constant_pb.rb │ │ ├── product_group_view_pb.rb │ │ ├── product_link_invitation_pb.rb │ │ ├── product_link_pb.rb │ │ ├── qualifying_question_pb.rb │ │ ├── recommendation_pb.rb │ │ ├── recommendation_subscription_pb.rb │ │ ├── remarketing_action_pb.rb │ │ ├── search_term_view_pb.rb │ │ ├── shared_criterion_pb.rb │ │ ├── shared_set_pb.rb │ │ ├── shopping_performance_view_pb.rb │ │ ├── shopping_product_pb.rb │ │ ├── smart_campaign_search_term_view_pb.rb │ │ ├── smart_campaign_setting_pb.rb │ │ ├── third_party_app_analytics_link_pb.rb │ │ ├── topic_constant_pb.rb │ │ ├── topic_view_pb.rb │ │ ├── travel_activity_group_view_pb.rb │ │ ├── travel_activity_performance_view_pb.rb │ │ ├── user_interest_pb.rb │ │ ├── user_list_customer_type_pb.rb │ │ ├── user_list_pb.rb │ │ ├── user_location_view_pb.rb │ │ ├── video_pb.rb │ │ └── webpage_view_pb.rb │ ├── services.rb │ └── services │ │ ├── account_budget_proposal_service.rb │ │ ├── account_budget_proposal_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── account_budget_proposal_service_pb.rb │ │ ├── account_budget_proposal_service_services_pb.rb │ │ ├── account_link_service.rb │ │ ├── account_link_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── account_link_service_pb.rb │ │ ├── account_link_service_services_pb.rb │ │ ├── ad_group_ad_label_service.rb │ │ ├── ad_group_ad_label_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── ad_group_ad_label_service_pb.rb │ │ ├── ad_group_ad_label_service_services_pb.rb │ │ ├── ad_group_ad_service.rb │ │ ├── ad_group_ad_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── ad_group_ad_service_pb.rb │ │ ├── ad_group_ad_service_services_pb.rb │ │ ├── ad_group_asset_service.rb │ │ ├── ad_group_asset_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── ad_group_asset_service_pb.rb │ │ ├── ad_group_asset_service_services_pb.rb │ │ ├── ad_group_asset_set_service.rb │ │ ├── ad_group_asset_set_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── ad_group_asset_set_service_pb.rb │ │ ├── ad_group_asset_set_service_services_pb.rb │ │ ├── ad_group_bid_modifier_service.rb │ │ ├── ad_group_bid_modifier_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── ad_group_bid_modifier_service_pb.rb │ │ ├── ad_group_bid_modifier_service_services_pb.rb │ │ ├── ad_group_criterion_customizer_service.rb │ │ ├── ad_group_criterion_customizer_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── ad_group_criterion_customizer_service_pb.rb │ │ ├── ad_group_criterion_customizer_service_services_pb.rb │ │ ├── ad_group_criterion_label_service.rb │ │ ├── ad_group_criterion_label_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── ad_group_criterion_label_service_pb.rb │ │ ├── ad_group_criterion_label_service_services_pb.rb │ │ ├── ad_group_criterion_service.rb │ │ ├── ad_group_criterion_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── ad_group_criterion_service_pb.rb │ │ ├── ad_group_criterion_service_services_pb.rb │ │ ├── ad_group_customizer_service.rb │ │ ├── ad_group_customizer_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── ad_group_customizer_service_pb.rb │ │ ├── ad_group_customizer_service_services_pb.rb │ │ ├── ad_group_label_service.rb │ │ ├── ad_group_label_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── ad_group_label_service_pb.rb │ │ ├── ad_group_label_service_services_pb.rb │ │ ├── ad_group_service.rb │ │ ├── ad_group_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── ad_group_service_pb.rb │ │ ├── ad_group_service_services_pb.rb │ │ ├── ad_parameter_service.rb │ │ ├── ad_parameter_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── ad_parameter_service_pb.rb │ │ ├── ad_parameter_service_services_pb.rb │ │ ├── ad_service.rb │ │ ├── ad_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── ad_service_pb.rb │ │ ├── ad_service_services_pb.rb │ │ ├── asset_group_asset_service.rb │ │ ├── asset_group_asset_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── asset_group_asset_service_pb.rb │ │ ├── asset_group_asset_service_services_pb.rb │ │ ├── asset_group_listing_group_filter_service.rb │ │ ├── asset_group_listing_group_filter_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── asset_group_listing_group_filter_service_pb.rb │ │ ├── asset_group_listing_group_filter_service_services_pb.rb │ │ ├── asset_group_service.rb │ │ ├── asset_group_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── asset_group_service_pb.rb │ │ ├── asset_group_service_services_pb.rb │ │ ├── asset_group_signal_service.rb │ │ ├── asset_group_signal_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── asset_group_signal_service_pb.rb │ │ ├── asset_group_signal_service_services_pb.rb │ │ ├── asset_service.rb │ │ ├── asset_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── asset_service_pb.rb │ │ ├── asset_service_services_pb.rb │ │ ├── asset_set_asset_service.rb │ │ ├── asset_set_asset_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── asset_set_asset_service_pb.rb │ │ ├── asset_set_asset_service_services_pb.rb │ │ ├── asset_set_service.rb │ │ ├── asset_set_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── asset_set_service_pb.rb │ │ ├── asset_set_service_services_pb.rb │ │ ├── audience_insights_service.rb │ │ ├── audience_insights_service │ │ ├── client.rb │ │ └── credentials.rb │ │ ├── audience_insights_service_pb.rb │ │ ├── audience_insights_service_services_pb.rb │ │ ├── audience_service.rb │ │ ├── audience_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── audience_service_pb.rb │ │ ├── audience_service_services_pb.rb │ │ ├── automatically_created_asset_removal_service.rb │ │ ├── automatically_created_asset_removal_service │ │ ├── client.rb │ │ └── credentials.rb │ │ ├── automatically_created_asset_removal_service_pb.rb │ │ ├── automatically_created_asset_removal_service_services_pb.rb │ │ ├── batch_job_service.rb │ │ ├── batch_job_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ ├── operations.rb │ │ └── paths.rb │ │ ├── batch_job_service_pb.rb │ │ ├── batch_job_service_services_pb.rb │ │ ├── bidding_data_exclusion_service.rb │ │ ├── bidding_data_exclusion_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── bidding_data_exclusion_service_pb.rb │ │ ├── bidding_data_exclusion_service_services_pb.rb │ │ ├── bidding_seasonality_adjustment_service.rb │ │ ├── bidding_seasonality_adjustment_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── bidding_seasonality_adjustment_service_pb.rb │ │ ├── bidding_seasonality_adjustment_service_services_pb.rb │ │ ├── bidding_strategy_service.rb │ │ ├── bidding_strategy_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── bidding_strategy_service_pb.rb │ │ ├── bidding_strategy_service_services_pb.rb │ │ ├── billing_setup_service.rb │ │ ├── billing_setup_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── billing_setup_service_pb.rb │ │ ├── billing_setup_service_services_pb.rb │ │ ├── brand_suggestion_service.rb │ │ ├── brand_suggestion_service │ │ ├── client.rb │ │ └── credentials.rb │ │ ├── brand_suggestion_service_pb.rb │ │ ├── brand_suggestion_service_services_pb.rb │ │ ├── campaign_asset_service.rb │ │ ├── campaign_asset_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── campaign_asset_service_pb.rb │ │ ├── campaign_asset_service_services_pb.rb │ │ ├── campaign_asset_set_service.rb │ │ ├── campaign_asset_set_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── campaign_asset_set_service_pb.rb │ │ ├── campaign_asset_set_service_services_pb.rb │ │ ├── campaign_bid_modifier_service.rb │ │ ├── campaign_bid_modifier_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── campaign_bid_modifier_service_pb.rb │ │ ├── campaign_bid_modifier_service_services_pb.rb │ │ ├── campaign_budget_service.rb │ │ ├── campaign_budget_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── campaign_budget_service_pb.rb │ │ ├── campaign_budget_service_services_pb.rb │ │ ├── campaign_conversion_goal_service.rb │ │ ├── campaign_conversion_goal_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── campaign_conversion_goal_service_pb.rb │ │ ├── campaign_conversion_goal_service_services_pb.rb │ │ ├── campaign_criterion_service.rb │ │ ├── campaign_criterion_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── campaign_criterion_service_pb.rb │ │ ├── campaign_criterion_service_services_pb.rb │ │ ├── campaign_customizer_service.rb │ │ ├── campaign_customizer_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── campaign_customizer_service_pb.rb │ │ ├── campaign_customizer_service_services_pb.rb │ │ ├── campaign_draft_service.rb │ │ ├── campaign_draft_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ ├── operations.rb │ │ └── paths.rb │ │ ├── campaign_draft_service_pb.rb │ │ ├── campaign_draft_service_services_pb.rb │ │ ├── campaign_group_service.rb │ │ ├── campaign_group_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── campaign_group_service_pb.rb │ │ ├── campaign_group_service_services_pb.rb │ │ ├── campaign_label_service.rb │ │ ├── campaign_label_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── campaign_label_service_pb.rb │ │ ├── campaign_label_service_services_pb.rb │ │ ├── campaign_lifecycle_goal_service.rb │ │ ├── campaign_lifecycle_goal_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── campaign_lifecycle_goal_service_pb.rb │ │ ├── campaign_lifecycle_goal_service_services_pb.rb │ │ ├── campaign_service.rb │ │ ├── campaign_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── campaign_service_pb.rb │ │ ├── campaign_service_services_pb.rb │ │ ├── campaign_shared_set_service.rb │ │ ├── campaign_shared_set_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── campaign_shared_set_service_pb.rb │ │ ├── campaign_shared_set_service_services_pb.rb │ │ ├── content_creator_insights_service.rb │ │ ├── content_creator_insights_service │ │ ├── client.rb │ │ └── credentials.rb │ │ ├── content_creator_insights_service_pb.rb │ │ ├── content_creator_insights_service_services_pb.rb │ │ ├── conversion_action_service.rb │ │ ├── conversion_action_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── conversion_action_service_pb.rb │ │ ├── conversion_action_service_services_pb.rb │ │ ├── conversion_adjustment_upload_service.rb │ │ ├── conversion_adjustment_upload_service │ │ ├── client.rb │ │ └── credentials.rb │ │ ├── conversion_adjustment_upload_service_pb.rb │ │ ├── conversion_adjustment_upload_service_services_pb.rb │ │ ├── conversion_custom_variable_service.rb │ │ ├── conversion_custom_variable_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── conversion_custom_variable_service_pb.rb │ │ ├── conversion_custom_variable_service_services_pb.rb │ │ ├── conversion_goal_campaign_config_service.rb │ │ ├── conversion_goal_campaign_config_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── conversion_goal_campaign_config_service_pb.rb │ │ ├── conversion_goal_campaign_config_service_services_pb.rb │ │ ├── conversion_upload_service.rb │ │ ├── conversion_upload_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── conversion_upload_service_pb.rb │ │ ├── conversion_upload_service_services_pb.rb │ │ ├── conversion_value_rule_service.rb │ │ ├── conversion_value_rule_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── conversion_value_rule_service_pb.rb │ │ ├── conversion_value_rule_service_services_pb.rb │ │ ├── conversion_value_rule_set_service.rb │ │ ├── conversion_value_rule_set_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── conversion_value_rule_set_service_pb.rb │ │ ├── conversion_value_rule_set_service_services_pb.rb │ │ ├── custom_audience_service.rb │ │ ├── custom_audience_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── custom_audience_service_pb.rb │ │ ├── custom_audience_service_services_pb.rb │ │ ├── custom_conversion_goal_service.rb │ │ ├── custom_conversion_goal_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── custom_conversion_goal_service_pb.rb │ │ ├── custom_conversion_goal_service_services_pb.rb │ │ ├── custom_interest_service.rb │ │ ├── custom_interest_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── custom_interest_service_pb.rb │ │ ├── custom_interest_service_services_pb.rb │ │ ├── customer_asset_service.rb │ │ ├── customer_asset_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── customer_asset_service_pb.rb │ │ ├── customer_asset_service_services_pb.rb │ │ ├── customer_asset_set_service.rb │ │ ├── customer_asset_set_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── customer_asset_set_service_pb.rb │ │ ├── customer_asset_set_service_services_pb.rb │ │ ├── customer_client_link_service.rb │ │ ├── customer_client_link_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── customer_client_link_service_pb.rb │ │ ├── customer_client_link_service_services_pb.rb │ │ ├── customer_conversion_goal_service.rb │ │ ├── customer_conversion_goal_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── customer_conversion_goal_service_pb.rb │ │ ├── customer_conversion_goal_service_services_pb.rb │ │ ├── customer_customizer_service.rb │ │ ├── customer_customizer_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── customer_customizer_service_pb.rb │ │ ├── customer_customizer_service_services_pb.rb │ │ ├── customer_label_service.rb │ │ ├── customer_label_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── customer_label_service_pb.rb │ │ ├── customer_label_service_services_pb.rb │ │ ├── customer_lifecycle_goal_service.rb │ │ ├── customer_lifecycle_goal_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── customer_lifecycle_goal_service_pb.rb │ │ ├── customer_lifecycle_goal_service_services_pb.rb │ │ ├── customer_manager_link_service.rb │ │ ├── customer_manager_link_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── customer_manager_link_service_pb.rb │ │ ├── customer_manager_link_service_services_pb.rb │ │ ├── customer_negative_criterion_service.rb │ │ ├── customer_negative_criterion_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── customer_negative_criterion_service_pb.rb │ │ ├── customer_negative_criterion_service_services_pb.rb │ │ ├── customer_service.rb │ │ ├── customer_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── customer_service_pb.rb │ │ ├── customer_service_services_pb.rb │ │ ├── customer_sk_ad_network_conversion_value_schema_service.rb │ │ ├── customer_sk_ad_network_conversion_value_schema_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── customer_sk_ad_network_conversion_value_schema_service_pb.rb │ │ ├── customer_sk_ad_network_conversion_value_schema_service_services_pb.rb │ │ ├── customer_user_access_invitation_service.rb │ │ ├── customer_user_access_invitation_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── customer_user_access_invitation_service_pb.rb │ │ ├── customer_user_access_invitation_service_services_pb.rb │ │ ├── customer_user_access_service.rb │ │ ├── customer_user_access_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── customer_user_access_service_pb.rb │ │ ├── customer_user_access_service_services_pb.rb │ │ ├── customizer_attribute_service.rb │ │ ├── customizer_attribute_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── customizer_attribute_service_pb.rb │ │ ├── customizer_attribute_service_services_pb.rb │ │ ├── data_link_service.rb │ │ ├── data_link_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── data_link_service_pb.rb │ │ ├── data_link_service_services_pb.rb │ │ ├── experiment_arm_service.rb │ │ ├── experiment_arm_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── experiment_arm_service_pb.rb │ │ ├── experiment_arm_service_services_pb.rb │ │ ├── experiment_service.rb │ │ ├── experiment_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ ├── operations.rb │ │ └── paths.rb │ │ ├── experiment_service_pb.rb │ │ ├── experiment_service_services_pb.rb │ │ ├── geo_target_constant_service.rb │ │ ├── geo_target_constant_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── geo_target_constant_service_pb.rb │ │ ├── geo_target_constant_service_services_pb.rb │ │ ├── google_ads_field_service.rb │ │ ├── google_ads_field_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── google_ads_field_service_pb.rb │ │ ├── google_ads_field_service_services_pb.rb │ │ ├── google_ads_service.rb │ │ ├── google_ads_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── google_ads_service_pb.rb │ │ ├── google_ads_service_services_pb.rb │ │ ├── identity_verification_service.rb │ │ ├── identity_verification_service │ │ ├── client.rb │ │ └── credentials.rb │ │ ├── identity_verification_service_pb.rb │ │ ├── identity_verification_service_services_pb.rb │ │ ├── invoice_service.rb │ │ ├── invoice_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── invoice_service_pb.rb │ │ ├── invoice_service_services_pb.rb │ │ ├── keyword_plan_ad_group_keyword_service.rb │ │ ├── keyword_plan_ad_group_keyword_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── keyword_plan_ad_group_keyword_service_pb.rb │ │ ├── keyword_plan_ad_group_keyword_service_services_pb.rb │ │ ├── keyword_plan_ad_group_service.rb │ │ ├── keyword_plan_ad_group_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── keyword_plan_ad_group_service_pb.rb │ │ ├── keyword_plan_ad_group_service_services_pb.rb │ │ ├── keyword_plan_campaign_keyword_service.rb │ │ ├── keyword_plan_campaign_keyword_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── keyword_plan_campaign_keyword_service_pb.rb │ │ ├── keyword_plan_campaign_keyword_service_services_pb.rb │ │ ├── keyword_plan_campaign_service.rb │ │ ├── keyword_plan_campaign_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── keyword_plan_campaign_service_pb.rb │ │ ├── keyword_plan_campaign_service_services_pb.rb │ │ ├── keyword_plan_idea_service.rb │ │ ├── keyword_plan_idea_service │ │ ├── client.rb │ │ └── credentials.rb │ │ ├── keyword_plan_idea_service_pb.rb │ │ ├── keyword_plan_idea_service_services_pb.rb │ │ ├── keyword_plan_service.rb │ │ ├── keyword_plan_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── keyword_plan_service_pb.rb │ │ ├── keyword_plan_service_services_pb.rb │ │ ├── keyword_theme_constant_service.rb │ │ ├── keyword_theme_constant_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── keyword_theme_constant_service_pb.rb │ │ ├── keyword_theme_constant_service_services_pb.rb │ │ ├── label_service.rb │ │ ├── label_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── label_service_pb.rb │ │ ├── label_service_services_pb.rb │ │ ├── local_services_lead_service.rb │ │ ├── local_services_lead_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── local_services_lead_service_pb.rb │ │ ├── local_services_lead_service_services_pb.rb │ │ ├── offline_user_data_job_service.rb │ │ ├── offline_user_data_job_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ ├── operations.rb │ │ └── paths.rb │ │ ├── offline_user_data_job_service_pb.rb │ │ ├── offline_user_data_job_service_services_pb.rb │ │ ├── payments_account_service.rb │ │ ├── payments_account_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── payments_account_service_pb.rb │ │ ├── payments_account_service_services_pb.rb │ │ ├── product_link_invitation_service.rb │ │ ├── product_link_invitation_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── product_link_invitation_service_pb.rb │ │ ├── product_link_invitation_service_services_pb.rb │ │ ├── product_link_service.rb │ │ ├── product_link_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── product_link_service_pb.rb │ │ ├── product_link_service_services_pb.rb │ │ ├── reach_plan_service.rb │ │ ├── reach_plan_service │ │ ├── client.rb │ │ └── credentials.rb │ │ ├── reach_plan_service_pb.rb │ │ ├── reach_plan_service_services_pb.rb │ │ ├── recommendation_service.rb │ │ ├── recommendation_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── recommendation_service_pb.rb │ │ ├── recommendation_service_services_pb.rb │ │ ├── recommendation_subscription_service.rb │ │ ├── recommendation_subscription_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── recommendation_subscription_service_pb.rb │ │ ├── recommendation_subscription_service_services_pb.rb │ │ ├── remarketing_action_service.rb │ │ ├── remarketing_action_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── remarketing_action_service_pb.rb │ │ ├── remarketing_action_service_services_pb.rb │ │ ├── shareable_preview_service.rb │ │ ├── shareable_preview_service │ │ ├── client.rb │ │ └── credentials.rb │ │ ├── shareable_preview_service_pb.rb │ │ ├── shareable_preview_service_services_pb.rb │ │ ├── shared_criterion_service.rb │ │ ├── shared_criterion_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── shared_criterion_service_pb.rb │ │ ├── shared_criterion_service_services_pb.rb │ │ ├── shared_set_service.rb │ │ ├── shared_set_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── shared_set_service_pb.rb │ │ ├── shared_set_service_services_pb.rb │ │ ├── smart_campaign_setting_service.rb │ │ ├── smart_campaign_setting_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── smart_campaign_setting_service_pb.rb │ │ ├── smart_campaign_setting_service_services_pb.rb │ │ ├── smart_campaign_suggest_service.rb │ │ ├── smart_campaign_suggest_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── smart_campaign_suggest_service_pb.rb │ │ ├── smart_campaign_suggest_service_services_pb.rb │ │ ├── third_party_app_analytics_link_service.rb │ │ ├── third_party_app_analytics_link_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── third_party_app_analytics_link_service_pb.rb │ │ ├── third_party_app_analytics_link_service_services_pb.rb │ │ ├── travel_asset_suggestion_service.rb │ │ ├── travel_asset_suggestion_service │ │ ├── client.rb │ │ └── credentials.rb │ │ ├── travel_asset_suggestion_service_pb.rb │ │ ├── travel_asset_suggestion_service_services_pb.rb │ │ ├── user_data_service.rb │ │ ├── user_data_service │ │ ├── client.rb │ │ └── credentials.rb │ │ ├── user_data_service_pb.rb │ │ ├── user_data_service_services_pb.rb │ │ ├── user_list_customer_type_service.rb │ │ ├── user_list_customer_type_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── user_list_customer_type_service_pb.rb │ │ ├── user_list_customer_type_service_services_pb.rb │ │ ├── user_list_service.rb │ │ ├── user_list_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── user_list_service_pb.rb │ │ └── user_list_service_services_pb.rb │ ├── v22 │ ├── common │ │ ├── ad_asset_pb.rb │ │ ├── ad_type_infos_pb.rb │ │ ├── additional_application_info_pb.rb │ │ ├── asset_policy_pb.rb │ │ ├── asset_set_types_pb.rb │ │ ├── asset_types_pb.rb │ │ ├── asset_usage_pb.rb │ │ ├── audience_insights_attribute_pb.rb │ │ ├── audiences_pb.rb │ │ ├── bidding_pb.rb │ │ ├── campaign_goal_settings_pb.rb │ │ ├── click_location_pb.rb │ │ ├── consent_pb.rb │ │ ├── criteria_pb.rb │ │ ├── criterion_category_availability_pb.rb │ │ ├── custom_parameter_pb.rb │ │ ├── customizer_value_pb.rb │ │ ├── dates_pb.rb │ │ ├── extensions_pb.rb │ │ ├── feed_common_pb.rb │ │ ├── final_app_url_pb.rb │ │ ├── frequency_cap_pb.rb │ │ ├── goal_common_pb.rb │ │ ├── goal_setting_pb.rb │ │ ├── keyword_plan_common_pb.rb │ │ ├── lifecycle_goals_pb.rb │ │ ├── local_services_pb.rb │ │ ├── metric_goal_pb.rb │ │ ├── metrics_pb.rb │ │ ├── offline_user_data_pb.rb │ │ ├── policy_pb.rb │ │ ├── policy_summary_pb.rb │ │ ├── real_time_bidding_setting_pb.rb │ │ ├── segments_pb.rb │ │ ├── simulation_pb.rb │ │ ├── tag_snippet_pb.rb │ │ ├── targeting_setting_pb.rb │ │ ├── text_label_pb.rb │ │ ├── third_party_integration_partners_pb.rb │ │ ├── url_collection_pb.rb │ │ ├── user_lists_pb.rb │ │ └── value_pb.rb │ ├── enums │ │ ├── access_invitation_status_pb.rb │ │ ├── access_reason_pb.rb │ │ ├── access_role_pb.rb │ │ ├── account_budget_proposal_status_pb.rb │ │ ├── account_budget_proposal_type_pb.rb │ │ ├── account_budget_status_pb.rb │ │ ├── account_link_status_pb.rb │ │ ├── ad_destination_type_pb.rb │ │ ├── ad_format_type_pb.rb │ │ ├── ad_group_ad_primary_status_pb.rb │ │ ├── ad_group_ad_primary_status_reason_pb.rb │ │ ├── ad_group_ad_rotation_mode_pb.rb │ │ ├── ad_group_ad_status_pb.rb │ │ ├── ad_group_criterion_approval_status_pb.rb │ │ ├── ad_group_criterion_primary_status_pb.rb │ │ ├── ad_group_criterion_primary_status_reason_pb.rb │ │ ├── ad_group_criterion_status_pb.rb │ │ ├── ad_group_primary_status_pb.rb │ │ ├── ad_group_primary_status_reason_pb.rb │ │ ├── ad_group_status_pb.rb │ │ ├── ad_group_type_pb.rb │ │ ├── ad_network_type_pb.rb │ │ ├── ad_serving_optimization_status_pb.rb │ │ ├── ad_strength_action_item_type_pb.rb │ │ ├── ad_strength_pb.rb │ │ ├── ad_type_pb.rb │ │ ├── advertising_channel_sub_type_pb.rb │ │ ├── advertising_channel_type_pb.rb │ │ ├── age_range_type_pb.rb │ │ ├── android_privacy_interaction_type_pb.rb │ │ ├── android_privacy_network_type_pb.rb │ │ ├── app_bidding_goal_pb.rb │ │ ├── app_campaign_app_store_pb.rb │ │ ├── app_campaign_bidding_strategy_goal_type_pb.rb │ │ ├── app_payment_model_type_pb.rb │ │ ├── app_url_operating_system_type_pb.rb │ │ ├── application_instance_pb.rb │ │ ├── asset_automation_status_pb.rb │ │ ├── asset_automation_type_pb.rb │ │ ├── asset_coverage_video_aspect_ratio_requirement_pb.rb │ │ ├── asset_field_type_pb.rb │ │ ├── asset_group_primary_status_pb.rb │ │ ├── asset_group_primary_status_reason_pb.rb │ │ ├── asset_group_signal_approval_status_pb.rb │ │ ├── asset_group_status_pb.rb │ │ ├── asset_link_primary_status_pb.rb │ │ ├── asset_link_primary_status_reason_pb.rb │ │ ├── asset_link_status_pb.rb │ │ ├── asset_offline_evaluation_error_reasons_pb.rb │ │ ├── asset_performance_label_pb.rb │ │ ├── asset_set_asset_status_pb.rb │ │ ├── asset_set_link_status_pb.rb │ │ ├── asset_set_status_pb.rb │ │ ├── asset_set_type_pb.rb │ │ ├── asset_source_pb.rb │ │ ├── asset_type_pb.rb │ │ ├── async_action_status_pb.rb │ │ ├── attribution_model_pb.rb │ │ ├── audience_insights_dimension_pb.rb │ │ ├── audience_insights_marketing_objective_pb.rb │ │ ├── audience_scope_pb.rb │ │ ├── audience_status_pb.rb │ │ ├── batch_job_status_pb.rb │ │ ├── bid_modifier_source_pb.rb │ │ ├── bidding_source_pb.rb │ │ ├── bidding_strategy_status_pb.rb │ │ ├── bidding_strategy_system_status_pb.rb │ │ ├── bidding_strategy_type_pb.rb │ │ ├── billing_setup_status_pb.rb │ │ ├── brand_request_rejection_reason_pb.rb │ │ ├── brand_safety_suitability_pb.rb │ │ ├── brand_state_pb.rb │ │ ├── budget_campaign_association_status_pb.rb │ │ ├── budget_delivery_method_pb.rb │ │ ├── budget_period_pb.rb │ │ ├── budget_status_pb.rb │ │ ├── budget_type_pb.rb │ │ ├── business_message_call_to_action_type_pb.rb │ │ ├── business_message_provider_pb.rb │ │ ├── call_conversion_reporting_state_pb.rb │ │ ├── call_to_action_type_pb.rb │ │ ├── call_tracking_display_location_pb.rb │ │ ├── call_type_pb.rb │ │ ├── campaign_criterion_status_pb.rb │ │ ├── campaign_draft_status_pb.rb │ │ ├── campaign_experiment_type_pb.rb │ │ ├── campaign_group_status_pb.rb │ │ ├── campaign_keyword_match_type_pb.rb │ │ ├── campaign_primary_status_pb.rb │ │ ├── campaign_primary_status_reason_pb.rb │ │ ├── campaign_serving_status_pb.rb │ │ ├── campaign_shared_set_status_pb.rb │ │ ├── campaign_status_pb.rb │ │ ├── chain_relationship_type_pb.rb │ │ ├── change_client_type_pb.rb │ │ ├── change_event_resource_type_pb.rb │ │ ├── change_status_operation_pb.rb │ │ ├── change_status_resource_type_pb.rb │ │ ├── click_type_pb.rb │ │ ├── combined_audience_status_pb.rb │ │ ├── consent_status_pb.rb │ │ ├── content_label_type_pb.rb │ │ ├── conversion_action_category_pb.rb │ │ ├── conversion_action_counting_type_pb.rb │ │ ├── conversion_action_status_pb.rb │ │ ├── conversion_action_type_pb.rb │ │ ├── conversion_adjustment_type_pb.rb │ │ ├── conversion_attribution_event_type_pb.rb │ │ ├── conversion_custom_variable_status_pb.rb │ │ ├── conversion_customer_type_pb.rb │ │ ├── conversion_environment_enum_pb.rb │ │ ├── conversion_lag_bucket_pb.rb │ │ ├── conversion_or_adjustment_lag_bucket_pb.rb │ │ ├── conversion_origin_pb.rb │ │ ├── conversion_tracking_status_enum_pb.rb │ │ ├── conversion_value_rule_primary_dimension_pb.rb │ │ ├── conversion_value_rule_set_status_pb.rb │ │ ├── conversion_value_rule_status_pb.rb │ │ ├── converting_user_prior_engagement_type_and_ltv_bucket_pb.rb │ │ ├── criterion_category_channel_availability_mode_pb.rb │ │ ├── criterion_category_locale_availability_mode_pb.rb │ │ ├── criterion_system_serving_status_pb.rb │ │ ├── criterion_type_pb.rb │ │ ├── custom_audience_member_type_pb.rb │ │ ├── custom_audience_status_pb.rb │ │ ├── custom_audience_type_pb.rb │ │ ├── custom_conversion_goal_status_pb.rb │ │ ├── custom_interest_member_type_pb.rb │ │ ├── custom_interest_status_pb.rb │ │ ├── custom_interest_type_pb.rb │ │ ├── customer_acquisition_optimization_mode_pb.rb │ │ ├── customer_lifecycle_optimization_mode_pb.rb │ │ ├── customer_match_upload_key_type_pb.rb │ │ ├── customer_pay_per_conversion_eligibility_failure_reason_pb.rb │ │ ├── customer_status_pb.rb │ │ ├── customizer_attribute_status_pb.rb │ │ ├── customizer_attribute_type_pb.rb │ │ ├── customizer_value_status_pb.rb │ │ ├── data_driven_model_status_pb.rb │ │ ├── data_link_status_pb.rb │ │ ├── data_link_type_pb.rb │ │ ├── day_of_week_pb.rb │ │ ├── demand_gen_channel_config_pb.rb │ │ ├── demand_gen_channel_strategy_pb.rb │ │ ├── device_pb.rb │ │ ├── display_ad_format_setting_pb.rb │ │ ├── display_upload_product_type_pb.rb │ │ ├── distance_bucket_pb.rb │ │ ├── eu_political_advertising_status_pb.rb │ │ ├── experiment_metric_direction_pb.rb │ │ ├── experiment_metric_pb.rb │ │ ├── experiment_status_pb.rb │ │ ├── experiment_type_pb.rb │ │ ├── external_conversion_source_pb.rb │ │ ├── fixed_cpm_goal_pb.rb │ │ ├── fixed_cpm_target_frequency_time_unit_pb.rb │ │ ├── frequency_cap_event_type_pb.rb │ │ ├── frequency_cap_level_pb.rb │ │ ├── frequency_cap_time_unit_pb.rb │ │ ├── gender_type_pb.rb │ │ ├── geo_target_constant_status_pb.rb │ │ ├── geo_targeting_type_pb.rb │ │ ├── goal_config_level_pb.rb │ │ ├── goal_optimization_eligibility_pb.rb │ │ ├── goal_type_pb.rb │ │ ├── google_ads_field_category_pb.rb │ │ ├── google_ads_field_data_type_pb.rb │ │ ├── google_voice_call_status_pb.rb │ │ ├── hotel_asset_suggestion_status_pb.rb │ │ ├── hotel_date_selection_type_pb.rb │ │ ├── hotel_price_bucket_pb.rb │ │ ├── hotel_rate_type_pb.rb │ │ ├── hotel_reconciliation_status_pb.rb │ │ ├── identity_verification_program_pb.rb │ │ ├── identity_verification_program_status_pb.rb │ │ ├── income_range_type_pb.rb │ │ ├── insights_knowledge_graph_entity_capabilities_pb.rb │ │ ├── insights_trend_pb.rb │ │ ├── interaction_event_type_pb.rb │ │ ├── interaction_type_pb.rb │ │ ├── invoice_type_pb.rb │ │ ├── keyword_match_type_pb.rb │ │ ├── keyword_plan_aggregate_metric_type_pb.rb │ │ ├── keyword_plan_competition_level_pb.rb │ │ ├── keyword_plan_concept_group_type_pb.rb │ │ ├── keyword_plan_forecast_interval_pb.rb │ │ ├── keyword_plan_keyword_annotation_pb.rb │ │ ├── keyword_plan_network_pb.rb │ │ ├── label_status_pb.rb │ │ ├── landing_page_source_pb.rb │ │ ├── lead_form_call_to_action_type_pb.rb │ │ ├── lead_form_desired_intent_pb.rb │ │ ├── lead_form_field_user_input_type_pb.rb │ │ ├── lead_form_post_submit_call_to_action_type_pb.rb │ │ ├── legacy_app_install_ad_app_store_pb.rb │ │ ├── linked_account_type_pb.rb │ │ ├── linked_product_type_pb.rb │ │ ├── listing_group_filter_custom_attribute_index_pb.rb │ │ ├── listing_group_filter_listing_source_pb.rb │ │ ├── listing_group_filter_product_category_level_pb.rb │ │ ├── listing_group_filter_product_channel_pb.rb │ │ ├── listing_group_filter_product_condition_pb.rb │ │ ├── listing_group_filter_product_type_level_pb.rb │ │ ├── listing_group_filter_type_enum_pb.rb │ │ ├── listing_group_type_pb.rb │ │ ├── listing_type_pb.rb │ │ ├── local_services_business_registration_check_rejection_reason_pb.rb │ │ ├── local_services_business_registration_type_pb.rb │ │ ├── local_services_conversation_type_pb.rb │ │ ├── local_services_employee_status_pb.rb │ │ ├── local_services_employee_type_pb.rb │ │ ├── local_services_insurance_rejection_reason_pb.rb │ │ ├── local_services_lead_credit_issuance_decision_pb.rb │ │ ├── local_services_lead_credit_state_pb.rb │ │ ├── local_services_lead_status_pb.rb │ │ ├── local_services_lead_survey_answer_pb.rb │ │ ├── local_services_lead_survey_dissatisfied_reason_pb.rb │ │ ├── local_services_lead_survey_satisfied_reason_pb.rb │ │ ├── local_services_lead_type_pb.rb │ │ ├── local_services_license_rejection_reason_pb.rb │ │ ├── local_services_participant_type_pb.rb │ │ ├── local_services_verification_artifact_status_pb.rb │ │ ├── local_services_verification_artifact_type_pb.rb │ │ ├── local_services_verification_status_pb.rb │ │ ├── location_group_radius_units_pb.rb │ │ ├── location_ownership_type_pb.rb │ │ ├── location_source_type_pb.rb │ │ ├── location_string_filter_type_pb.rb │ │ ├── lookalike_expansion_level_pb.rb │ │ ├── manager_link_status_pb.rb │ │ ├── match_type_pb.rb │ │ ├── media_type_pb.rb │ │ ├── mime_type_pb.rb │ │ ├── minute_of_hour_pb.rb │ │ ├── mobile_app_vendor_pb.rb │ │ ├── mobile_device_type_pb.rb │ │ ├── month_of_year_pb.rb │ │ ├── negative_geo_target_type_pb.rb │ │ ├── non_skippable_max_duration_pb.rb │ │ ├── non_skippable_min_duration_pb.rb │ │ ├── offline_conversion_diagnostic_status_enum_pb.rb │ │ ├── offline_event_upload_client_enum_pb.rb │ │ ├── offline_user_data_job_failure_reason_pb.rb │ │ ├── offline_user_data_job_match_rate_range_pb.rb │ │ ├── offline_user_data_job_status_pb.rb │ │ ├── offline_user_data_job_type_pb.rb │ │ ├── operating_system_version_operator_type_pb.rb │ │ ├── optimization_goal_type_pb.rb │ │ ├── parental_status_type_pb.rb │ │ ├── payment_mode_pb.rb │ │ ├── performance_max_upgrade_status_pb.rb │ │ ├── placement_type_pb.rb │ │ ├── policy_approval_status_pb.rb │ │ ├── policy_review_status_pb.rb │ │ ├── policy_topic_entry_type_pb.rb │ │ ├── policy_topic_evidence_destination_mismatch_url_type_pb.rb │ │ ├── policy_topic_evidence_destination_not_working_device_pb.rb │ │ ├── policy_topic_evidence_destination_not_working_dns_error_type_pb.rb │ │ ├── positive_geo_target_type_pb.rb │ │ ├── price_extension_price_qualifier_pb.rb │ │ ├── price_extension_price_unit_pb.rb │ │ ├── price_extension_type_pb.rb │ │ ├── product_availability_pb.rb │ │ ├── product_category_level_pb.rb │ │ ├── product_category_state_pb.rb │ │ ├── product_channel_exclusivity_pb.rb │ │ ├── product_channel_pb.rb │ │ ├── product_condition_pb.rb │ │ ├── product_custom_attribute_index_pb.rb │ │ ├── product_issue_severity_pb.rb │ │ ├── product_link_invitation_status_pb.rb │ │ ├── product_status_pb.rb │ │ ├── product_type_level_pb.rb │ │ ├── promotion_barcode_type_pb.rb │ │ ├── promotion_extension_discount_modifier_pb.rb │ │ ├── promotion_extension_occasion_pb.rb │ │ ├── proximity_radius_units_pb.rb │ │ ├── quality_score_bucket_pb.rb │ │ ├── reach_plan_age_range_pb.rb │ │ ├── reach_plan_conversion_rate_model_pb.rb │ │ ├── reach_plan_network_pb.rb │ │ ├── reach_plan_plannable_user_list_status_pb.rb │ │ ├── reach_plan_surface_pb.rb │ │ ├── recommendation_subscription_status_pb.rb │ │ ├── recommendation_type_pb.rb │ │ ├── resource_change_operation_pb.rb │ │ ├── resource_limit_type_pb.rb │ │ ├── response_content_type_pb.rb │ │ ├── search_engine_results_page_type_pb.rb │ │ ├── search_term_match_source_pb.rb │ │ ├── search_term_match_type_pb.rb │ │ ├── search_term_targeting_status_pb.rb │ │ ├── seasonality_event_scope_pb.rb │ │ ├── seasonality_event_status_pb.rb │ │ ├── served_asset_field_type_pb.rb │ │ ├── shared_set_status_pb.rb │ │ ├── shared_set_type_pb.rb │ │ ├── shopping_add_products_to_campaign_recommendation_enum_pb.rb │ │ ├── simulation_modification_method_pb.rb │ │ ├── simulation_type_pb.rb │ │ ├── sk_ad_network_ad_event_type_pb.rb │ │ ├── sk_ad_network_attribution_credit_pb.rb │ │ ├── sk_ad_network_coarse_conversion_value_pb.rb │ │ ├── sk_ad_network_source_type_pb.rb │ │ ├── sk_ad_network_user_type_pb.rb │ │ ├── slot_pb.rb │ │ ├── smart_campaign_not_eligible_reason_pb.rb │ │ ├── smart_campaign_status_pb.rb │ │ ├── spending_limit_type_pb.rb │ │ ├── summary_row_setting_pb.rb │ │ ├── system_managed_entity_source_pb.rb │ │ ├── target_cpa_opt_in_recommendation_goal_pb.rb │ │ ├── target_frequency_time_unit_pb.rb │ │ ├── target_impression_share_location_pb.rb │ │ ├── targeting_dimension_pb.rb │ │ ├── third_party_brand_lift_integration_partner_pb.rb │ │ ├── third_party_brand_safety_integration_partner_pb.rb │ │ ├── third_party_reach_integration_partner_pb.rb │ │ ├── third_party_viewability_integration_partner_pb.rb │ │ ├── time_type_pb.rb │ │ ├── tracking_code_page_format_pb.rb │ │ ├── tracking_code_type_pb.rb │ │ ├── user_identifier_source_pb.rb │ │ ├── user_interest_taxonomy_type_pb.rb │ │ ├── user_list_access_status_pb.rb │ │ ├── user_list_closing_reason_pb.rb │ │ ├── user_list_crm_data_source_type_pb.rb │ │ ├── user_list_customer_type_category_pb.rb │ │ ├── user_list_date_rule_item_operator_pb.rb │ │ ├── user_list_flexible_rule_operator_pb.rb │ │ ├── user_list_logical_rule_operator_pb.rb │ │ ├── user_list_membership_status_pb.rb │ │ ├── user_list_number_rule_item_operator_pb.rb │ │ ├── user_list_prepopulation_status_pb.rb │ │ ├── user_list_rule_type_pb.rb │ │ ├── user_list_size_range_pb.rb │ │ ├── user_list_string_rule_item_operator_pb.rb │ │ ├── user_list_type_pb.rb │ │ ├── value_rule_device_type_pb.rb │ │ ├── value_rule_geo_location_match_type_pb.rb │ │ ├── value_rule_operation_pb.rb │ │ ├── value_rule_set_attachment_type_pb.rb │ │ ├── value_rule_set_dimension_pb.rb │ │ ├── vanity_pharma_display_url_mode_pb.rb │ │ ├── vanity_pharma_text_pb.rb │ │ ├── video_ad_format_restriction_pb.rb │ │ ├── video_ad_sequence_interaction_type_pb.rb │ │ ├── video_ad_sequence_minimum_duration_pb.rb │ │ ├── video_thumbnail_pb.rb │ │ ├── webpage_condition_operand_pb.rb │ │ ├── webpage_condition_operator_pb.rb │ │ └── youtube_video_property_pb.rb │ ├── errors │ │ ├── access_invitation_error_pb.rb │ │ ├── account_budget_proposal_error_pb.rb │ │ ├── account_link_error_pb.rb │ │ ├── ad_customizer_error_pb.rb │ │ ├── ad_error_pb.rb │ │ ├── ad_group_ad_error_pb.rb │ │ ├── ad_group_bid_modifier_error_pb.rb │ │ ├── ad_group_criterion_customizer_error_pb.rb │ │ ├── ad_group_criterion_error_pb.rb │ │ ├── ad_group_customizer_error_pb.rb │ │ ├── ad_group_error_pb.rb │ │ ├── ad_group_feed_error_pb.rb │ │ ├── ad_parameter_error_pb.rb │ │ ├── ad_sharing_error_pb.rb │ │ ├── adx_error_pb.rb │ │ ├── asset_error_pb.rb │ │ ├── asset_generation_error_pb.rb │ │ ├── asset_group_asset_error_pb.rb │ │ ├── asset_group_error_pb.rb │ │ ├── asset_group_listing_group_filter_error_pb.rb │ │ ├── asset_group_signal_error_pb.rb │ │ ├── asset_link_error_pb.rb │ │ ├── asset_set_asset_error_pb.rb │ │ ├── asset_set_error_pb.rb │ │ ├── asset_set_link_error_pb.rb │ │ ├── audience_error_pb.rb │ │ ├── audience_insights_error_pb.rb │ │ ├── authentication_error_pb.rb │ │ ├── authorization_error_pb.rb │ │ ├── automatically_created_asset_removal_error_pb.rb │ │ ├── batch_job_error_pb.rb │ │ ├── bidding_error_pb.rb │ │ ├── bidding_strategy_error_pb.rb │ │ ├── billing_setup_error_pb.rb │ │ ├── brand_guidelines_migration_error_pb.rb │ │ ├── campaign_budget_error_pb.rb │ │ ├── campaign_conversion_goal_error_pb.rb │ │ ├── campaign_criterion_error_pb.rb │ │ ├── campaign_customizer_error_pb.rb │ │ ├── campaign_draft_error_pb.rb │ │ ├── campaign_error_pb.rb │ │ ├── campaign_experiment_error_pb.rb │ │ ├── campaign_feed_error_pb.rb │ │ ├── campaign_goal_config_error_pb.rb │ │ ├── campaign_lifecycle_goal_error_pb.rb │ │ ├── campaign_shared_set_error_pb.rb │ │ ├── change_event_error_pb.rb │ │ ├── change_status_error_pb.rb │ │ ├── click_view_error_pb.rb │ │ ├── collection_size_error_pb.rb │ │ ├── context_error_pb.rb │ │ ├── conversion_action_error_pb.rb │ │ ├── conversion_adjustment_upload_error_pb.rb │ │ ├── conversion_custom_variable_error_pb.rb │ │ ├── conversion_goal_campaign_config_error_pb.rb │ │ ├── conversion_upload_error_pb.rb │ │ ├── conversion_value_rule_error_pb.rb │ │ ├── conversion_value_rule_set_error_pb.rb │ │ ├── country_code_error_pb.rb │ │ ├── criterion_error_pb.rb │ │ ├── currency_code_error_pb.rb │ │ ├── currency_error_pb.rb │ │ ├── custom_audience_error_pb.rb │ │ ├── custom_conversion_goal_error_pb.rb │ │ ├── custom_interest_error_pb.rb │ │ ├── customer_client_link_error_pb.rb │ │ ├── customer_customizer_error_pb.rb │ │ ├── customer_error_pb.rb │ │ ├── customer_feed_error_pb.rb │ │ ├── customer_lifecycle_goal_error_pb.rb │ │ ├── customer_manager_link_error_pb.rb │ │ ├── customer_sk_ad_network_conversion_value_schema_error_pb.rb │ │ ├── customer_user_access_error_pb.rb │ │ ├── customizer_attribute_error_pb.rb │ │ ├── data_link_error_pb.rb │ │ ├── database_error_pb.rb │ │ ├── date_error_pb.rb │ │ ├── date_range_error_pb.rb │ │ ├── distinct_error_pb.rb │ │ ├── enum_error_pb.rb │ │ ├── errors_pb.rb │ │ ├── experiment_arm_error_pb.rb │ │ ├── experiment_error_pb.rb │ │ ├── extension_feed_item_error_pb.rb │ │ ├── extension_setting_error_pb.rb │ │ ├── feed_attribute_reference_error_pb.rb │ │ ├── feed_error_pb.rb │ │ ├── feed_item_error_pb.rb │ │ ├── feed_item_set_error_pb.rb │ │ ├── feed_item_set_link_error_pb.rb │ │ ├── feed_item_target_error_pb.rb │ │ ├── feed_item_validation_error_pb.rb │ │ ├── feed_mapping_error_pb.rb │ │ ├── field_error_pb.rb │ │ ├── field_mask_error_pb.rb │ │ ├── final_url_expansion_asset_view_error_pb.rb │ │ ├── function_error_pb.rb │ │ ├── function_parsing_error_pb.rb │ │ ├── geo_target_constant_suggestion_error_pb.rb │ │ ├── goal_error_pb.rb │ │ ├── header_error_pb.rb │ │ ├── id_error_pb.rb │ │ ├── identity_verification_error_pb.rb │ │ ├── image_error_pb.rb │ │ ├── internal_error_pb.rb │ │ ├── invoice_error_pb.rb │ │ ├── keyword_plan_ad_group_error_pb.rb │ │ ├── keyword_plan_ad_group_keyword_error_pb.rb │ │ ├── keyword_plan_campaign_error_pb.rb │ │ ├── keyword_plan_campaign_keyword_error_pb.rb │ │ ├── keyword_plan_error_pb.rb │ │ ├── keyword_plan_idea_error_pb.rb │ │ ├── label_error_pb.rb │ │ ├── language_code_error_pb.rb │ │ ├── list_operation_error_pb.rb │ │ ├── manager_link_error_pb.rb │ │ ├── media_bundle_error_pb.rb │ │ ├── media_file_error_pb.rb │ │ ├── media_upload_error_pb.rb │ │ ├── merchant_center_error_pb.rb │ │ ├── multiplier_error_pb.rb │ │ ├── mutate_error_pb.rb │ │ ├── new_resource_creation_error_pb.rb │ │ ├── not_allowlisted_error_pb.rb │ │ ├── not_empty_error_pb.rb │ │ ├── null_error_pb.rb │ │ ├── offline_user_data_job_error_pb.rb │ │ ├── operation_access_denied_error_pb.rb │ │ ├── operator_error_pb.rb │ │ ├── partial_failure_error_pb.rb │ │ ├── payments_account_error_pb.rb │ │ ├── policy_finding_error_pb.rb │ │ ├── policy_validation_parameter_error_pb.rb │ │ ├── policy_violation_error_pb.rb │ │ ├── product_link_error_pb.rb │ │ ├── product_link_invitation_error_pb.rb │ │ ├── query_error_pb.rb │ │ ├── quota_error_pb.rb │ │ ├── range_error_pb.rb │ │ ├── reach_plan_error_pb.rb │ │ ├── recommendation_error_pb.rb │ │ ├── recommendation_subscription_error_pb.rb │ │ ├── region_code_error_pb.rb │ │ ├── request_error_pb.rb │ │ ├── resource_access_denied_error_pb.rb │ │ ├── resource_count_limit_exceeded_error_pb.rb │ │ ├── search_term_insight_error_pb.rb │ │ ├── setting_error_pb.rb │ │ ├── shareable_preview_error_pb.rb │ │ ├── shared_criterion_error_pb.rb │ │ ├── shared_set_error_pb.rb │ │ ├── shopping_product_error_pb.rb │ │ ├── size_limit_error_pb.rb │ │ ├── smart_campaign_error_pb.rb │ │ ├── string_format_error_pb.rb │ │ ├── string_length_error_pb.rb │ │ ├── third_party_app_analytics_link_error_pb.rb │ │ ├── time_zone_error_pb.rb │ │ ├── url_field_error_pb.rb │ │ ├── user_data_error_pb.rb │ │ ├── user_list_customer_type_error_pb.rb │ │ ├── user_list_error_pb.rb │ │ ├── video_campaign_error_pb.rb │ │ └── youtube_video_registration_error_pb.rb │ ├── resources │ │ ├── accessible_bidding_strategy_pb.rb │ │ ├── account_budget_pb.rb │ │ ├── account_budget_proposal_pb.rb │ │ ├── account_link_pb.rb │ │ ├── ad_group_ad_asset_combination_view_pb.rb │ │ ├── ad_group_ad_asset_view_pb.rb │ │ ├── ad_group_ad_label_pb.rb │ │ ├── ad_group_ad_pb.rb │ │ ├── ad_group_asset_pb.rb │ │ ├── ad_group_asset_set_pb.rb │ │ ├── ad_group_audience_view_pb.rb │ │ ├── ad_group_bid_modifier_pb.rb │ │ ├── ad_group_criterion_customizer_pb.rb │ │ ├── ad_group_criterion_label_pb.rb │ │ ├── ad_group_criterion_pb.rb │ │ ├── ad_group_criterion_simulation_pb.rb │ │ ├── ad_group_customizer_pb.rb │ │ ├── ad_group_label_pb.rb │ │ ├── ad_group_pb.rb │ │ ├── ad_group_simulation_pb.rb │ │ ├── ad_parameter_pb.rb │ │ ├── ad_pb.rb │ │ ├── ad_schedule_view_pb.rb │ │ ├── age_range_view_pb.rb │ │ ├── ai_max_search_term_ad_combination_view_pb.rb │ │ ├── android_privacy_shared_key_google_ad_group_pb.rb │ │ ├── android_privacy_shared_key_google_campaign_pb.rb │ │ ├── android_privacy_shared_key_google_network_type_pb.rb │ │ ├── asset_field_type_view_pb.rb │ │ ├── asset_group_asset_pb.rb │ │ ├── asset_group_listing_group_filter_pb.rb │ │ ├── asset_group_pb.rb │ │ ├── asset_group_product_group_view_pb.rb │ │ ├── asset_group_signal_pb.rb │ │ ├── asset_group_top_combination_view_pb.rb │ │ ├── asset_pb.rb │ │ ├── asset_set_asset_pb.rb │ │ ├── asset_set_pb.rb │ │ ├── asset_set_type_view_pb.rb │ │ ├── audience_pb.rb │ │ ├── batch_job_pb.rb │ │ ├── bidding_data_exclusion_pb.rb │ │ ├── bidding_seasonality_adjustment_pb.rb │ │ ├── bidding_strategy_pb.rb │ │ ├── bidding_strategy_simulation_pb.rb │ │ ├── billing_setup_pb.rb │ │ ├── call_view_pb.rb │ │ ├── campaign_aggregate_asset_view_pb.rb │ │ ├── campaign_asset_pb.rb │ │ ├── campaign_asset_set_pb.rb │ │ ├── campaign_audience_view_pb.rb │ │ ├── campaign_bid_modifier_pb.rb │ │ ├── campaign_budget_pb.rb │ │ ├── campaign_conversion_goal_pb.rb │ │ ├── campaign_criterion_pb.rb │ │ ├── campaign_customizer_pb.rb │ │ ├── campaign_draft_pb.rb │ │ ├── campaign_goal_config_pb.rb │ │ ├── campaign_group_pb.rb │ │ ├── campaign_label_pb.rb │ │ ├── campaign_lifecycle_goal_pb.rb │ │ ├── campaign_pb.rb │ │ ├── campaign_search_term_insight_pb.rb │ │ ├── campaign_search_term_view_pb.rb │ │ ├── campaign_shared_set_pb.rb │ │ ├── campaign_simulation_pb.rb │ │ ├── carrier_constant_pb.rb │ │ ├── change_event_pb.rb │ │ ├── change_status_pb.rb │ │ ├── channel_aggregate_asset_view_pb.rb │ │ ├── click_view_pb.rb │ │ ├── combined_audience_pb.rb │ │ ├── content_criterion_view_pb.rb │ │ ├── conversion_action_pb.rb │ │ ├── conversion_custom_variable_pb.rb │ │ ├── conversion_goal_campaign_config_pb.rb │ │ ├── conversion_value_rule_pb.rb │ │ ├── conversion_value_rule_set_pb.rb │ │ ├── currency_constant_pb.rb │ │ ├── custom_audience_pb.rb │ │ ├── custom_conversion_goal_pb.rb │ │ ├── custom_interest_pb.rb │ │ ├── customer_asset_pb.rb │ │ ├── customer_asset_set_pb.rb │ │ ├── customer_client_link_pb.rb │ │ ├── customer_client_pb.rb │ │ ├── customer_conversion_goal_pb.rb │ │ ├── customer_customizer_pb.rb │ │ ├── customer_label_pb.rb │ │ ├── customer_lifecycle_goal_pb.rb │ │ ├── customer_manager_link_pb.rb │ │ ├── customer_negative_criterion_pb.rb │ │ ├── customer_pb.rb │ │ ├── customer_search_term_insight_pb.rb │ │ ├── customer_sk_ad_network_conversion_value_schema_pb.rb │ │ ├── customer_user_access_invitation_pb.rb │ │ ├── customer_user_access_pb.rb │ │ ├── customizer_attribute_pb.rb │ │ ├── data_link_pb.rb │ │ ├── detail_content_suitability_placement_view_pb.rb │ │ ├── detail_placement_view_pb.rb │ │ ├── detailed_demographic_pb.rb │ │ ├── display_keyword_view_pb.rb │ │ ├── distance_view_pb.rb │ │ ├── domain_category_pb.rb │ │ ├── dynamic_search_ads_search_term_view_pb.rb │ │ ├── expanded_landing_page_view_pb.rb │ │ ├── experiment_arm_pb.rb │ │ ├── experiment_pb.rb │ │ ├── final_url_expansion_asset_view_pb.rb │ │ ├── gender_view_pb.rb │ │ ├── geo_target_constant_pb.rb │ │ ├── geographic_view_pb.rb │ │ ├── goal_pb.rb │ │ ├── google_ads_field_pb.rb │ │ ├── group_content_suitability_placement_view_pb.rb │ │ ├── group_placement_view_pb.rb │ │ ├── hotel_group_view_pb.rb │ │ ├── hotel_performance_view_pb.rb │ │ ├── hotel_reconciliation_pb.rb │ │ ├── income_range_view_pb.rb │ │ ├── invoice_pb.rb │ │ ├── keyword_plan_ad_group_keyword_pb.rb │ │ ├── keyword_plan_ad_group_pb.rb │ │ ├── keyword_plan_campaign_keyword_pb.rb │ │ ├── keyword_plan_campaign_pb.rb │ │ ├── keyword_plan_pb.rb │ │ ├── keyword_theme_constant_pb.rb │ │ ├── keyword_view_pb.rb │ │ ├── label_pb.rb │ │ ├── landing_page_view_pb.rb │ │ ├── language_constant_pb.rb │ │ ├── lead_form_submission_data_pb.rb │ │ ├── life_event_pb.rb │ │ ├── local_services_employee_pb.rb │ │ ├── local_services_lead_conversation_pb.rb │ │ ├── local_services_lead_pb.rb │ │ ├── local_services_verification_artifact_pb.rb │ │ ├── location_interest_view_pb.rb │ │ ├── location_view_pb.rb │ │ ├── managed_placement_view_pb.rb │ │ ├── media_file_pb.rb │ │ ├── mobile_app_category_constant_pb.rb │ │ ├── mobile_device_constant_pb.rb │ │ ├── offline_conversion_upload_client_summary_pb.rb │ │ ├── offline_conversion_upload_conversion_action_summary_pb.rb │ │ ├── offline_user_data_job_pb.rb │ │ ├── operating_system_version_constant_pb.rb │ │ ├── paid_organic_search_term_view_pb.rb │ │ ├── parental_status_view_pb.rb │ │ ├── payments_account_pb.rb │ │ ├── per_store_view_pb.rb │ │ ├── performance_max_placement_view_pb.rb │ │ ├── product_category_constant_pb.rb │ │ ├── product_group_view_pb.rb │ │ ├── product_link_invitation_pb.rb │ │ ├── product_link_pb.rb │ │ ├── qualifying_question_pb.rb │ │ ├── recommendation_pb.rb │ │ ├── recommendation_subscription_pb.rb │ │ ├── remarketing_action_pb.rb │ │ ├── search_term_view_pb.rb │ │ ├── shared_criterion_pb.rb │ │ ├── shared_set_pb.rb │ │ ├── shopping_performance_view_pb.rb │ │ ├── shopping_product_pb.rb │ │ ├── smart_campaign_search_term_view_pb.rb │ │ ├── smart_campaign_setting_pb.rb │ │ ├── targeting_expansion_view_pb.rb │ │ ├── third_party_app_analytics_link_pb.rb │ │ ├── topic_constant_pb.rb │ │ ├── topic_view_pb.rb │ │ ├── travel_activity_group_view_pb.rb │ │ ├── travel_activity_performance_view_pb.rb │ │ ├── user_interest_pb.rb │ │ ├── user_list_customer_type_pb.rb │ │ ├── user_list_pb.rb │ │ ├── user_location_view_pb.rb │ │ ├── video_pb.rb │ │ └── webpage_view_pb.rb │ ├── services.rb │ └── services │ │ ├── account_budget_proposal_service.rb │ │ ├── account_budget_proposal_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── account_budget_proposal_service_pb.rb │ │ ├── account_budget_proposal_service_services_pb.rb │ │ ├── account_link_service.rb │ │ ├── account_link_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── account_link_service_pb.rb │ │ ├── account_link_service_services_pb.rb │ │ ├── ad_group_ad_label_service.rb │ │ ├── ad_group_ad_label_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── ad_group_ad_label_service_pb.rb │ │ ├── ad_group_ad_label_service_services_pb.rb │ │ ├── ad_group_ad_service.rb │ │ ├── ad_group_ad_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── ad_group_ad_service_pb.rb │ │ ├── ad_group_ad_service_services_pb.rb │ │ ├── ad_group_asset_service.rb │ │ ├── ad_group_asset_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── ad_group_asset_service_pb.rb │ │ ├── ad_group_asset_service_services_pb.rb │ │ ├── ad_group_asset_set_service.rb │ │ ├── ad_group_asset_set_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── ad_group_asset_set_service_pb.rb │ │ ├── ad_group_asset_set_service_services_pb.rb │ │ ├── ad_group_bid_modifier_service.rb │ │ ├── ad_group_bid_modifier_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── ad_group_bid_modifier_service_pb.rb │ │ ├── ad_group_bid_modifier_service_services_pb.rb │ │ ├── ad_group_criterion_customizer_service.rb │ │ ├── ad_group_criterion_customizer_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── ad_group_criterion_customizer_service_pb.rb │ │ ├── ad_group_criterion_customizer_service_services_pb.rb │ │ ├── ad_group_criterion_label_service.rb │ │ ├── ad_group_criterion_label_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── ad_group_criterion_label_service_pb.rb │ │ ├── ad_group_criterion_label_service_services_pb.rb │ │ ├── ad_group_criterion_service.rb │ │ ├── ad_group_criterion_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── ad_group_criterion_service_pb.rb │ │ ├── ad_group_criterion_service_services_pb.rb │ │ ├── ad_group_customizer_service.rb │ │ ├── ad_group_customizer_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── ad_group_customizer_service_pb.rb │ │ ├── ad_group_customizer_service_services_pb.rb │ │ ├── ad_group_label_service.rb │ │ ├── ad_group_label_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── ad_group_label_service_pb.rb │ │ ├── ad_group_label_service_services_pb.rb │ │ ├── ad_group_service.rb │ │ ├── ad_group_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── ad_group_service_pb.rb │ │ ├── ad_group_service_services_pb.rb │ │ ├── ad_parameter_service.rb │ │ ├── ad_parameter_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── ad_parameter_service_pb.rb │ │ ├── ad_parameter_service_services_pb.rb │ │ ├── ad_service.rb │ │ ├── ad_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── ad_service_pb.rb │ │ ├── ad_service_services_pb.rb │ │ ├── asset_generation_service.rb │ │ ├── asset_generation_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── asset_generation_service_pb.rb │ │ ├── asset_generation_service_services_pb.rb │ │ ├── asset_group_asset_service.rb │ │ ├── asset_group_asset_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── asset_group_asset_service_pb.rb │ │ ├── asset_group_asset_service_services_pb.rb │ │ ├── asset_group_listing_group_filter_service.rb │ │ ├── asset_group_listing_group_filter_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── asset_group_listing_group_filter_service_pb.rb │ │ ├── asset_group_listing_group_filter_service_services_pb.rb │ │ ├── asset_group_service.rb │ │ ├── asset_group_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── asset_group_service_pb.rb │ │ ├── asset_group_service_services_pb.rb │ │ ├── asset_group_signal_service.rb │ │ ├── asset_group_signal_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── asset_group_signal_service_pb.rb │ │ ├── asset_group_signal_service_services_pb.rb │ │ ├── asset_service.rb │ │ ├── asset_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── asset_service_pb.rb │ │ ├── asset_service_services_pb.rb │ │ ├── asset_set_asset_service.rb │ │ ├── asset_set_asset_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── asset_set_asset_service_pb.rb │ │ ├── asset_set_asset_service_services_pb.rb │ │ ├── asset_set_service.rb │ │ ├── asset_set_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── asset_set_service_pb.rb │ │ ├── asset_set_service_services_pb.rb │ │ ├── audience_insights_service.rb │ │ ├── audience_insights_service │ │ ├── client.rb │ │ └── credentials.rb │ │ ├── audience_insights_service_pb.rb │ │ ├── audience_insights_service_services_pb.rb │ │ ├── audience_service.rb │ │ ├── audience_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── audience_service_pb.rb │ │ ├── audience_service_services_pb.rb │ │ ├── automatically_created_asset_removal_service.rb │ │ ├── automatically_created_asset_removal_service │ │ ├── client.rb │ │ └── credentials.rb │ │ ├── automatically_created_asset_removal_service_pb.rb │ │ ├── automatically_created_asset_removal_service_services_pb.rb │ │ ├── batch_job_service.rb │ │ ├── batch_job_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ ├── operations.rb │ │ └── paths.rb │ │ ├── batch_job_service_pb.rb │ │ ├── batch_job_service_services_pb.rb │ │ ├── bidding_data_exclusion_service.rb │ │ ├── bidding_data_exclusion_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── bidding_data_exclusion_service_pb.rb │ │ ├── bidding_data_exclusion_service_services_pb.rb │ │ ├── bidding_seasonality_adjustment_service.rb │ │ ├── bidding_seasonality_adjustment_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── bidding_seasonality_adjustment_service_pb.rb │ │ ├── bidding_seasonality_adjustment_service_services_pb.rb │ │ ├── bidding_strategy_service.rb │ │ ├── bidding_strategy_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── bidding_strategy_service_pb.rb │ │ ├── bidding_strategy_service_services_pb.rb │ │ ├── billing_setup_service.rb │ │ ├── billing_setup_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── billing_setup_service_pb.rb │ │ ├── billing_setup_service_services_pb.rb │ │ ├── brand_suggestion_service.rb │ │ ├── brand_suggestion_service │ │ ├── client.rb │ │ └── credentials.rb │ │ ├── brand_suggestion_service_pb.rb │ │ ├── brand_suggestion_service_services_pb.rb │ │ ├── campaign_asset_service.rb │ │ ├── campaign_asset_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── campaign_asset_service_pb.rb │ │ ├── campaign_asset_service_services_pb.rb │ │ ├── campaign_asset_set_service.rb │ │ ├── campaign_asset_set_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── campaign_asset_set_service_pb.rb │ │ ├── campaign_asset_set_service_services_pb.rb │ │ ├── campaign_bid_modifier_service.rb │ │ ├── campaign_bid_modifier_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── campaign_bid_modifier_service_pb.rb │ │ ├── campaign_bid_modifier_service_services_pb.rb │ │ ├── campaign_budget_service.rb │ │ ├── campaign_budget_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── campaign_budget_service_pb.rb │ │ ├── campaign_budget_service_services_pb.rb │ │ ├── campaign_conversion_goal_service.rb │ │ ├── campaign_conversion_goal_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── campaign_conversion_goal_service_pb.rb │ │ ├── campaign_conversion_goal_service_services_pb.rb │ │ ├── campaign_criterion_service.rb │ │ ├── campaign_criterion_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── campaign_criterion_service_pb.rb │ │ ├── campaign_criterion_service_services_pb.rb │ │ ├── campaign_customizer_service.rb │ │ ├── campaign_customizer_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── campaign_customizer_service_pb.rb │ │ ├── campaign_customizer_service_services_pb.rb │ │ ├── campaign_draft_service.rb │ │ ├── campaign_draft_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ ├── operations.rb │ │ └── paths.rb │ │ ├── campaign_draft_service_pb.rb │ │ ├── campaign_draft_service_services_pb.rb │ │ ├── campaign_goal_config_service.rb │ │ ├── campaign_goal_config_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── campaign_goal_config_service_pb.rb │ │ ├── campaign_goal_config_service_services_pb.rb │ │ ├── campaign_group_service.rb │ │ ├── campaign_group_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── campaign_group_service_pb.rb │ │ ├── campaign_group_service_services_pb.rb │ │ ├── campaign_label_service.rb │ │ ├── campaign_label_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── campaign_label_service_pb.rb │ │ ├── campaign_label_service_services_pb.rb │ │ ├── campaign_lifecycle_goal_service.rb │ │ ├── campaign_lifecycle_goal_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── campaign_lifecycle_goal_service_pb.rb │ │ ├── campaign_lifecycle_goal_service_services_pb.rb │ │ ├── campaign_service.rb │ │ ├── campaign_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── campaign_service_pb.rb │ │ ├── campaign_service_services_pb.rb │ │ ├── campaign_shared_set_service.rb │ │ ├── campaign_shared_set_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── campaign_shared_set_service_pb.rb │ │ ├── campaign_shared_set_service_services_pb.rb │ │ ├── content_creator_insights_service.rb │ │ ├── content_creator_insights_service │ │ ├── client.rb │ │ └── credentials.rb │ │ ├── content_creator_insights_service_pb.rb │ │ ├── content_creator_insights_service_services_pb.rb │ │ ├── conversion_action_service.rb │ │ ├── conversion_action_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── conversion_action_service_pb.rb │ │ ├── conversion_action_service_services_pb.rb │ │ ├── conversion_adjustment_upload_service.rb │ │ ├── conversion_adjustment_upload_service │ │ ├── client.rb │ │ └── credentials.rb │ │ ├── conversion_adjustment_upload_service_pb.rb │ │ ├── conversion_adjustment_upload_service_services_pb.rb │ │ ├── conversion_custom_variable_service.rb │ │ ├── conversion_custom_variable_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── conversion_custom_variable_service_pb.rb │ │ ├── conversion_custom_variable_service_services_pb.rb │ │ ├── conversion_goal_campaign_config_service.rb │ │ ├── conversion_goal_campaign_config_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── conversion_goal_campaign_config_service_pb.rb │ │ ├── conversion_goal_campaign_config_service_services_pb.rb │ │ ├── conversion_upload_service.rb │ │ ├── conversion_upload_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── conversion_upload_service_pb.rb │ │ ├── conversion_upload_service_services_pb.rb │ │ ├── conversion_value_rule_service.rb │ │ ├── conversion_value_rule_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── conversion_value_rule_service_pb.rb │ │ ├── conversion_value_rule_service_services_pb.rb │ │ ├── conversion_value_rule_set_service.rb │ │ ├── conversion_value_rule_set_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── conversion_value_rule_set_service_pb.rb │ │ ├── conversion_value_rule_set_service_services_pb.rb │ │ ├── custom_audience_service.rb │ │ ├── custom_audience_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── custom_audience_service_pb.rb │ │ ├── custom_audience_service_services_pb.rb │ │ ├── custom_conversion_goal_service.rb │ │ ├── custom_conversion_goal_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── custom_conversion_goal_service_pb.rb │ │ ├── custom_conversion_goal_service_services_pb.rb │ │ ├── custom_interest_service.rb │ │ ├── custom_interest_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── custom_interest_service_pb.rb │ │ ├── custom_interest_service_services_pb.rb │ │ ├── customer_asset_service.rb │ │ ├── customer_asset_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── customer_asset_service_pb.rb │ │ ├── customer_asset_service_services_pb.rb │ │ ├── customer_asset_set_service.rb │ │ ├── customer_asset_set_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── customer_asset_set_service_pb.rb │ │ ├── customer_asset_set_service_services_pb.rb │ │ ├── customer_client_link_service.rb │ │ ├── customer_client_link_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── customer_client_link_service_pb.rb │ │ ├── customer_client_link_service_services_pb.rb │ │ ├── customer_conversion_goal_service.rb │ │ ├── customer_conversion_goal_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── customer_conversion_goal_service_pb.rb │ │ ├── customer_conversion_goal_service_services_pb.rb │ │ ├── customer_customizer_service.rb │ │ ├── customer_customizer_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── customer_customizer_service_pb.rb │ │ ├── customer_customizer_service_services_pb.rb │ │ ├── customer_label_service.rb │ │ ├── customer_label_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── customer_label_service_pb.rb │ │ ├── customer_label_service_services_pb.rb │ │ ├── customer_lifecycle_goal_service.rb │ │ ├── customer_lifecycle_goal_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── customer_lifecycle_goal_service_pb.rb │ │ ├── customer_lifecycle_goal_service_services_pb.rb │ │ ├── customer_manager_link_service.rb │ │ ├── customer_manager_link_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── customer_manager_link_service_pb.rb │ │ ├── customer_manager_link_service_services_pb.rb │ │ ├── customer_negative_criterion_service.rb │ │ ├── customer_negative_criterion_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── customer_negative_criterion_service_pb.rb │ │ ├── customer_negative_criterion_service_services_pb.rb │ │ ├── customer_service.rb │ │ ├── customer_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── customer_service_pb.rb │ │ ├── customer_service_services_pb.rb │ │ ├── customer_sk_ad_network_conversion_value_schema_service.rb │ │ ├── customer_sk_ad_network_conversion_value_schema_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── customer_sk_ad_network_conversion_value_schema_service_pb.rb │ │ ├── customer_sk_ad_network_conversion_value_schema_service_services_pb.rb │ │ ├── customer_user_access_invitation_service.rb │ │ ├── customer_user_access_invitation_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── customer_user_access_invitation_service_pb.rb │ │ ├── customer_user_access_invitation_service_services_pb.rb │ │ ├── customer_user_access_service.rb │ │ ├── customer_user_access_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── customer_user_access_service_pb.rb │ │ ├── customer_user_access_service_services_pb.rb │ │ ├── customizer_attribute_service.rb │ │ ├── customizer_attribute_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── customizer_attribute_service_pb.rb │ │ ├── customizer_attribute_service_services_pb.rb │ │ ├── data_link_service.rb │ │ ├── data_link_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── data_link_service_pb.rb │ │ ├── data_link_service_services_pb.rb │ │ ├── experiment_arm_service.rb │ │ ├── experiment_arm_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── experiment_arm_service_pb.rb │ │ ├── experiment_arm_service_services_pb.rb │ │ ├── experiment_service.rb │ │ ├── experiment_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ ├── operations.rb │ │ └── paths.rb │ │ ├── experiment_service_pb.rb │ │ ├── experiment_service_services_pb.rb │ │ ├── geo_target_constant_service.rb │ │ ├── geo_target_constant_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── geo_target_constant_service_pb.rb │ │ ├── geo_target_constant_service_services_pb.rb │ │ ├── goal_service.rb │ │ ├── goal_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── goal_service_pb.rb │ │ ├── goal_service_services_pb.rb │ │ ├── google_ads_field_service.rb │ │ ├── google_ads_field_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── google_ads_field_service_pb.rb │ │ ├── google_ads_field_service_services_pb.rb │ │ ├── google_ads_service.rb │ │ ├── google_ads_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── google_ads_service_pb.rb │ │ ├── google_ads_service_services_pb.rb │ │ ├── identity_verification_service.rb │ │ ├── identity_verification_service │ │ ├── client.rb │ │ └── credentials.rb │ │ ├── identity_verification_service_pb.rb │ │ ├── identity_verification_service_services_pb.rb │ │ ├── invoice_service.rb │ │ ├── invoice_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── invoice_service_pb.rb │ │ ├── invoice_service_services_pb.rb │ │ ├── keyword_plan_ad_group_keyword_service.rb │ │ ├── keyword_plan_ad_group_keyword_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── keyword_plan_ad_group_keyword_service_pb.rb │ │ ├── keyword_plan_ad_group_keyword_service_services_pb.rb │ │ ├── keyword_plan_ad_group_service.rb │ │ ├── keyword_plan_ad_group_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── keyword_plan_ad_group_service_pb.rb │ │ ├── keyword_plan_ad_group_service_services_pb.rb │ │ ├── keyword_plan_campaign_keyword_service.rb │ │ ├── keyword_plan_campaign_keyword_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── keyword_plan_campaign_keyword_service_pb.rb │ │ ├── keyword_plan_campaign_keyword_service_services_pb.rb │ │ ├── keyword_plan_campaign_service.rb │ │ ├── keyword_plan_campaign_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── keyword_plan_campaign_service_pb.rb │ │ ├── keyword_plan_campaign_service_services_pb.rb │ │ ├── keyword_plan_idea_service.rb │ │ ├── keyword_plan_idea_service │ │ ├── client.rb │ │ └── credentials.rb │ │ ├── keyword_plan_idea_service_pb.rb │ │ ├── keyword_plan_idea_service_services_pb.rb │ │ ├── keyword_plan_service.rb │ │ ├── keyword_plan_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── keyword_plan_service_pb.rb │ │ ├── keyword_plan_service_services_pb.rb │ │ ├── keyword_theme_constant_service.rb │ │ ├── keyword_theme_constant_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── keyword_theme_constant_service_pb.rb │ │ ├── keyword_theme_constant_service_services_pb.rb │ │ ├── label_service.rb │ │ ├── label_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── label_service_pb.rb │ │ ├── label_service_services_pb.rb │ │ ├── local_services_lead_service.rb │ │ ├── local_services_lead_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── local_services_lead_service_pb.rb │ │ ├── local_services_lead_service_services_pb.rb │ │ ├── offline_user_data_job_service.rb │ │ ├── offline_user_data_job_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ ├── operations.rb │ │ └── paths.rb │ │ ├── offline_user_data_job_service_pb.rb │ │ ├── offline_user_data_job_service_services_pb.rb │ │ ├── payments_account_service.rb │ │ ├── payments_account_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── payments_account_service_pb.rb │ │ ├── payments_account_service_services_pb.rb │ │ ├── product_link_invitation_service.rb │ │ ├── product_link_invitation_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── product_link_invitation_service_pb.rb │ │ ├── product_link_invitation_service_services_pb.rb │ │ ├── product_link_service.rb │ │ ├── product_link_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── product_link_service_pb.rb │ │ ├── product_link_service_services_pb.rb │ │ ├── reach_plan_service.rb │ │ ├── reach_plan_service │ │ ├── client.rb │ │ └── credentials.rb │ │ ├── reach_plan_service_pb.rb │ │ ├── reach_plan_service_services_pb.rb │ │ ├── recommendation_service.rb │ │ ├── recommendation_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── recommendation_service_pb.rb │ │ ├── recommendation_service_services_pb.rb │ │ ├── recommendation_subscription_service.rb │ │ ├── recommendation_subscription_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── recommendation_subscription_service_pb.rb │ │ ├── recommendation_subscription_service_services_pb.rb │ │ ├── remarketing_action_service.rb │ │ ├── remarketing_action_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── remarketing_action_service_pb.rb │ │ ├── remarketing_action_service_services_pb.rb │ │ ├── shareable_preview_service.rb │ │ ├── shareable_preview_service │ │ ├── client.rb │ │ └── credentials.rb │ │ ├── shareable_preview_service_pb.rb │ │ ├── shareable_preview_service_services_pb.rb │ │ ├── shared_criterion_service.rb │ │ ├── shared_criterion_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── shared_criterion_service_pb.rb │ │ ├── shared_criterion_service_services_pb.rb │ │ ├── shared_set_service.rb │ │ ├── shared_set_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── shared_set_service_pb.rb │ │ ├── shared_set_service_services_pb.rb │ │ ├── smart_campaign_setting_service.rb │ │ ├── smart_campaign_setting_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── smart_campaign_setting_service_pb.rb │ │ ├── smart_campaign_setting_service_services_pb.rb │ │ ├── smart_campaign_suggest_service.rb │ │ ├── smart_campaign_suggest_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── smart_campaign_suggest_service_pb.rb │ │ ├── smart_campaign_suggest_service_services_pb.rb │ │ ├── third_party_app_analytics_link_service.rb │ │ ├── third_party_app_analytics_link_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── third_party_app_analytics_link_service_pb.rb │ │ ├── third_party_app_analytics_link_service_services_pb.rb │ │ ├── travel_asset_suggestion_service.rb │ │ ├── travel_asset_suggestion_service │ │ ├── client.rb │ │ └── credentials.rb │ │ ├── travel_asset_suggestion_service_pb.rb │ │ ├── travel_asset_suggestion_service_services_pb.rb │ │ ├── user_data_service.rb │ │ ├── user_data_service │ │ ├── client.rb │ │ └── credentials.rb │ │ ├── user_data_service_pb.rb │ │ ├── user_data_service_services_pb.rb │ │ ├── user_list_customer_type_service.rb │ │ ├── user_list_customer_type_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── user_list_customer_type_service_pb.rb │ │ ├── user_list_customer_type_service_services_pb.rb │ │ ├── user_list_service.rb │ │ ├── user_list_service │ │ ├── client.rb │ │ ├── credentials.rb │ │ └── paths.rb │ │ ├── user_list_service_pb.rb │ │ └── user_list_service_services_pb.rb │ ├── version.rb │ └── version_alternate.rb ├── scripts ├── codegen.sh ├── fix-codegen.sh ├── regen-boilerplate.sh └── validate_protos.rb ├── test ├── deprecation_test.rb ├── fixtures │ ├── config.rb │ ├── keyfile.json │ └── sam.jpg ├── test_config.rb ├── test_errors.rb ├── test_field_mask_util.rb ├── test_google_ads.rb ├── test_google_ads_client.rb ├── test_logging_interceptor.rb ├── test_lookup_util.rb ├── test_object_creation.rb ├── test_path_lookup_util.rb ├── test_service_wrapper.rb └── version_alternate_test.rb └── third_party └── rspec ├── LICENSE ├── METADATA └── caller_filter.rb /.bundle/config: -------------------------------------------------------------------------------- 1 | --- 2 | BUNDLE_PATH: "vendor/bundle" 3 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/usage_question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/.github/ISSUE_TEMPLATE/usage_question.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/.gitignore -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/Rakefile -------------------------------------------------------------------------------- /THIRD-PARTY-LICENCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/THIRD-PARTY-LICENCES.txt -------------------------------------------------------------------------------- /codegen/.gitignore: -------------------------------------------------------------------------------- 1 | examples.txt 2 | -------------------------------------------------------------------------------- /codegen/.rspec: -------------------------------------------------------------------------------- 1 | --require spec_helper 2 | -------------------------------------------------------------------------------- /codegen/boilerplate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/codegen/boilerplate.rb -------------------------------------------------------------------------------- /codegen/factories.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/codegen/factories.rb -------------------------------------------------------------------------------- /codegen/spec/filters_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/codegen/spec/filters_spec.rb -------------------------------------------------------------------------------- /codegen/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/codegen/spec/spec_helper.rb -------------------------------------------------------------------------------- /codegen/spec/template_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/codegen/spec/template_service_spec.rb -------------------------------------------------------------------------------- /codegen/spec/tracepoints_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/codegen/spec/tracepoints_spec.rb -------------------------------------------------------------------------------- /codegen/src/filters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/codegen/src/filters.rb -------------------------------------------------------------------------------- /codegen/src/rendering.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/codegen/src/rendering.rb -------------------------------------------------------------------------------- /codegen/src/template_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/codegen/src/template_service.rb -------------------------------------------------------------------------------- /codegen/src/tracepoints.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/codegen/src/tracepoints.rb -------------------------------------------------------------------------------- /codegen/templates/api_versions.rb.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/codegen/templates/api_versions.rb.erb -------------------------------------------------------------------------------- /codegen/templates/enums.rb.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/codegen/templates/enums.rb.erb -------------------------------------------------------------------------------- /codegen/templates/factories.rb.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/codegen/templates/factories.rb.erb -------------------------------------------------------------------------------- /codegen/templates/operations.rb.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/codegen/templates/operations.rb.erb -------------------------------------------------------------------------------- /codegen/templates/path_lookup_util.rb.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/codegen/templates/path_lookup_util.rb.erb -------------------------------------------------------------------------------- /codegen/templates/resources.rb.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/codegen/templates/resources.rb.erb -------------------------------------------------------------------------------- /codegen/templates/services.rb.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/codegen/templates/services.rb.erb -------------------------------------------------------------------------------- /codegen/templates/version.rb.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/codegen/templates/version.rb.erb -------------------------------------------------------------------------------- /examples/account_management/create_customer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/examples/account_management/create_customer.rb -------------------------------------------------------------------------------- /examples/account_management/get_account_hierarchy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/examples/account_management/get_account_hierarchy.rb -------------------------------------------------------------------------------- /examples/account_management/get_change_details.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/examples/account_management/get_change_details.rb -------------------------------------------------------------------------------- /examples/account_management/get_change_summary.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/examples/account_management/get_change_summary.rb -------------------------------------------------------------------------------- /examples/account_management/link_manager_to_client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/examples/account_management/link_manager_to_client.rb -------------------------------------------------------------------------------- /examples/account_management/list_accessible_customers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/examples/account_management/list_accessible_customers.rb -------------------------------------------------------------------------------- /examples/account_management/update_user_access.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/examples/account_management/update_user_access.rb -------------------------------------------------------------------------------- /examples/account_management/verify_advertiser_identity.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/examples/account_management/verify_advertiser_identity.rb -------------------------------------------------------------------------------- /examples/advanced_operations/add_ad_customizer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/examples/advanced_operations/add_ad_customizer.rb -------------------------------------------------------------------------------- /examples/advanced_operations/add_ad_group_bid_modifier.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/examples/advanced_operations/add_ad_group_bid_modifier.rb -------------------------------------------------------------------------------- /examples/advanced_operations/add_app_campaign.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/examples/advanced_operations/add_app_campaign.rb -------------------------------------------------------------------------------- /examples/advanced_operations/add_bidding_data_exclusion.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/examples/advanced_operations/add_bidding_data_exclusion.rb -------------------------------------------------------------------------------- /examples/advanced_operations/add_call_ad.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/examples/advanced_operations/add_call_ad.rb -------------------------------------------------------------------------------- /examples/advanced_operations/add_demand_gen_campaign.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/examples/advanced_operations/add_demand_gen_campaign.rb -------------------------------------------------------------------------------- /examples/advanced_operations/add_display_upload_ad.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/examples/advanced_operations/add_display_upload_ad.rb -------------------------------------------------------------------------------- /examples/advanced_operations/add_dynamic_search_ads.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/examples/advanced_operations/add_dynamic_search_ads.rb -------------------------------------------------------------------------------- /examples/advanced_operations/add_smart_campaign.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/examples/advanced_operations/add_smart_campaign.rb -------------------------------------------------------------------------------- /examples/advanced_operations/get_ad_group_bid_modifiers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/examples/advanced_operations/get_ad_group_bid_modifiers.rb -------------------------------------------------------------------------------- /examples/assets/add_call.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/examples/assets/add_call.rb -------------------------------------------------------------------------------- /examples/assets/add_hotel_callout.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/examples/assets/add_hotel_callout.rb -------------------------------------------------------------------------------- /examples/assets/add_lead_form_asset.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/examples/assets/add_lead_form_asset.rb -------------------------------------------------------------------------------- /examples/assets/add_prices.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/examples/assets/add_prices.rb -------------------------------------------------------------------------------- /examples/assets/add_sitelinks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/examples/assets/add_sitelinks.rb -------------------------------------------------------------------------------- /examples/authentication/generate_user_credentials.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/examples/authentication/generate_user_credentials.rb -------------------------------------------------------------------------------- /examples/basic_operations/add_ad_groups.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/examples/basic_operations/add_ad_groups.rb -------------------------------------------------------------------------------- /examples/basic_operations/add_campaigns.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/examples/basic_operations/add_campaigns.rb -------------------------------------------------------------------------------- /examples/basic_operations/get_campaigns.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/examples/basic_operations/get_campaigns.rb -------------------------------------------------------------------------------- /examples/basic_operations/get_responsive_search_ads.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/examples/basic_operations/get_responsive_search_ads.rb -------------------------------------------------------------------------------- /examples/basic_operations/pause_ad.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/examples/basic_operations/pause_ad.rb -------------------------------------------------------------------------------- /examples/basic_operations/remove_campaign.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/examples/basic_operations/remove_campaign.rb -------------------------------------------------------------------------------- /examples/basic_operations/search_for_google_ads_fields.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/examples/basic_operations/search_for_google_ads_fields.rb -------------------------------------------------------------------------------- /examples/basic_operations/update_ad_group.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/examples/basic_operations/update_ad_group.rb -------------------------------------------------------------------------------- /examples/basic_operations/update_campaign.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/examples/basic_operations/update_campaign.rb -------------------------------------------------------------------------------- /examples/basic_operations/update_responsive_search_ad.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/examples/basic_operations/update_responsive_search_ad.rb -------------------------------------------------------------------------------- /examples/billing/add_account_budget_proposal.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/examples/billing/add_account_budget_proposal.rb -------------------------------------------------------------------------------- /examples/billing/add_billing_setup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/examples/billing/add_billing_setup.rb -------------------------------------------------------------------------------- /examples/billing/get_invoices.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/examples/billing/get_invoices.rb -------------------------------------------------------------------------------- /examples/campaign_management/add_campaign_labels.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/examples/campaign_management/add_campaign_labels.rb -------------------------------------------------------------------------------- /examples/campaign_management/create_experiment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/examples/campaign_management/create_experiment.rb -------------------------------------------------------------------------------- /examples/campaign_management/get_all_disapproved_ads.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/examples/campaign_management/get_all_disapproved_ads.rb -------------------------------------------------------------------------------- /examples/campaign_management/set_ad_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/examples/campaign_management/set_ad_parameters.rb -------------------------------------------------------------------------------- /examples/campaign_management/validate_ad.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/examples/campaign_management/validate_ad.rb -------------------------------------------------------------------------------- /examples/error_handling/handle_partial_failure.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/examples/error_handling/handle_partial_failure.rb -------------------------------------------------------------------------------- /examples/error_handling/handle_rate_exceeded_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/examples/error_handling/handle_rate_exceeded_error.rb -------------------------------------------------------------------------------- /examples/factories/various_factories_usage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/examples/factories/various_factories_usage.rb -------------------------------------------------------------------------------- /examples/misc/campaign_report_to_csv.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/examples/misc/campaign_report_to_csv.rb -------------------------------------------------------------------------------- /examples/misc/set_custom_client_timeouts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/examples/misc/set_custom_client_timeouts.rb -------------------------------------------------------------------------------- /examples/misc/upload_image_asset.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/examples/misc/upload_image_asset.rb -------------------------------------------------------------------------------- /examples/planning/forecast_reach.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/examples/planning/forecast_reach.rb -------------------------------------------------------------------------------- /examples/planning/generate_forecast_metrics.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/examples/planning/generate_forecast_metrics.rb -------------------------------------------------------------------------------- /examples/planning/generate_historical_metrics.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/examples/planning/generate_historical_metrics.rb -------------------------------------------------------------------------------- /examples/planning/generate_keyword_ideas.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/examples/planning/generate_keyword_ideas.rb -------------------------------------------------------------------------------- /examples/recommendations/dismiss_recommendation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/examples/recommendations/dismiss_recommendation.rb -------------------------------------------------------------------------------- /examples/remarketing/add_conversion_action.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/examples/remarketing/add_conversion_action.rb -------------------------------------------------------------------------------- /examples/remarketing/add_conversion_based_user_list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/examples/remarketing/add_conversion_based_user_list.rb -------------------------------------------------------------------------------- /examples/remarketing/add_custom_audience.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/examples/remarketing/add_custom_audience.rb -------------------------------------------------------------------------------- /examples/remarketing/add_customer_match_user_list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/examples/remarketing/add_customer_match_user_list.rb -------------------------------------------------------------------------------- /examples/remarketing/add_dynamic_remarketing_asset.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/examples/remarketing/add_dynamic_remarketing_asset.rb -------------------------------------------------------------------------------- /examples/remarketing/add_flexible_rule_user_list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/examples/remarketing/add_flexible_rule_user_list.rb -------------------------------------------------------------------------------- /examples/remarketing/add_logical_user_list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/examples/remarketing/add_logical_user_list.rb -------------------------------------------------------------------------------- /examples/remarketing/set_up_advanced_remarketing.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/examples/remarketing/set_up_advanced_remarketing.rb -------------------------------------------------------------------------------- /examples/remarketing/set_up_remarketing.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/examples/remarketing/set_up_remarketing.rb -------------------------------------------------------------------------------- /examples/remarketing/update_audience_target_restriction.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/examples/remarketing/update_audience_target_restriction.rb -------------------------------------------------------------------------------- /examples/remarketing/upload_call_conversion.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/examples/remarketing/upload_call_conversion.rb -------------------------------------------------------------------------------- /examples/remarketing/upload_conversion_adjustment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/examples/remarketing/upload_conversion_adjustment.rb -------------------------------------------------------------------------------- /examples/remarketing/upload_offline_conversion.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/examples/remarketing/upload_offline_conversion.rb -------------------------------------------------------------------------------- /examples/remarketing/upload_store_sales_transactions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/examples/remarketing/upload_store_sales_transactions.rb -------------------------------------------------------------------------------- /examples/reporting/parallel_report_download.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/examples/reporting/parallel_report_download.rb -------------------------------------------------------------------------------- /examples/shared/error_handler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/examples/shared/error_handler.rb -------------------------------------------------------------------------------- /examples/shopping_ads/add_listing_scope.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/examples/shopping_ads/add_listing_scope.rb -------------------------------------------------------------------------------- /examples/shopping_ads/add_shopping_product_ad.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/examples/shopping_ads/add_shopping_product_ad.rb -------------------------------------------------------------------------------- /examples/shopping_ads/get_product_category_constants.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/examples/shopping_ads/get_product_category_constants.rb -------------------------------------------------------------------------------- /examples/targeting/add_campaign_targeting_criteria.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/examples/targeting/add_campaign_targeting_criteria.rb -------------------------------------------------------------------------------- /examples/targeting/add_customer_negative_criteria.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/examples/targeting/add_customer_negative_criteria.rb -------------------------------------------------------------------------------- /examples/targeting/add_demographic_targeting_criteria.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/examples/targeting/add_demographic_targeting_criteria.rb -------------------------------------------------------------------------------- /examples/targeting/get_geo_target_constants_by_names.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/examples/targeting/get_geo_target_constants_by_names.rb -------------------------------------------------------------------------------- /examples/travel/add_hotel_ad.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/examples/travel/add_hotel_ad.rb -------------------------------------------------------------------------------- /examples/travel/add_hotel_ad_group_bid_modifiers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/examples/travel/add_hotel_ad_group_bid_modifiers.rb -------------------------------------------------------------------------------- /examples/travel/add_hotel_listing_group_tree.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/examples/travel/add_hotel_listing_group_tree.rb -------------------------------------------------------------------------------- /examples/travel/add_things_to_do_ad.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/examples/travel/add_things_to_do_ad.rb -------------------------------------------------------------------------------- /google-ads-googleads.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/google-ads-googleads.gemspec -------------------------------------------------------------------------------- /google_ads_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/google_ads_config.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/api_versions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/api_versions.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/config.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/errors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/errors.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/field_mask_util.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/field_mask_util.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/google_ads_client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/google_ads_client.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/lookup_util.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/lookup_util.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/patches.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/patches.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/service_lookup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/service_lookup.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/service_wrapper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/service_wrapper.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/status_decoder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/status_decoder.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/utils/build_path_lookup_class.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/utils/build_path_lookup_class.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/utils/path_lookup_definer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/utils/path_lookup_definer.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/utils/string_utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/utils/string_utils.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/utils/v19/path_lookup_util.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/utils/v19/path_lookup_util.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/utils/v20/path_lookup_util.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/utils/v20/path_lookup_util.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/utils/v21/path_lookup_util.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/utils/v21/path_lookup_util.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/utils/v22/path_lookup_util.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/utils/v22/path_lookup_util.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/common/ad_asset_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/common/ad_asset_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/common/ad_type_infos_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/common/ad_type_infos_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/common/asset_policy_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/common/asset_policy_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/common/asset_set_types_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/common/asset_set_types_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/common/asset_types_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/common/asset_types_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/common/asset_usage_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/common/asset_usage_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/common/audiences_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/common/audiences_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/common/bidding_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/common/bidding_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/common/click_location_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/common/click_location_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/common/consent_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/common/consent_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/common/criteria_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/common/criteria_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/common/dates_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/common/dates_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/common/extensions_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/common/extensions_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/common/feed_common_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/common/feed_common_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/common/final_app_url_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/common/final_app_url_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/common/frequency_cap_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/common/frequency_cap_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/common/lifecycle_goals_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/common/lifecycle_goals_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/common/local_services_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/common/local_services_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/common/metric_goal_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/common/metric_goal_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/common/metrics_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/common/metrics_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/common/policy_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/common/policy_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/common/policy_summary_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/common/policy_summary_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/common/segments_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/common/segments_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/common/simulation_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/common/simulation_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/common/tag_snippet_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/common/tag_snippet_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/common/text_label_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/common/text_label_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/common/url_collection_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/common/url_collection_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/common/user_lists_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/common/user_lists_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/common/value_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/common/value_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/enums/access_reason_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/enums/access_reason_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/enums/access_role_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/enums/access_role_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/enums/ad_format_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/enums/ad_format_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/enums/ad_group_status_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/enums/ad_group_status_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/enums/ad_group_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/enums/ad_group_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/enums/ad_network_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/enums/ad_network_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/enums/ad_strength_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/enums/ad_strength_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/enums/ad_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/enums/ad_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/enums/age_range_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/enums/age_range_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/enums/app_bidding_goal_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/enums/app_bidding_goal_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/enums/asset_field_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/enums/asset_field_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/enums/asset_set_status_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/enums/asset_set_status_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/enums/asset_set_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/enums/asset_set_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/enums/asset_source_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/enums/asset_source_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/enums/asset_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/enums/asset_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/enums/audience_scope_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/enums/audience_scope_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/enums/audience_status_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/enums/audience_status_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/enums/batch_job_status_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/enums/batch_job_status_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/enums/bidding_source_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/enums/bidding_source_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/enums/brand_state_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/enums/brand_state_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/enums/budget_period_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/enums/budget_period_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/enums/budget_status_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/enums/budget_status_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/enums/budget_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/enums/budget_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/enums/call_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/enums/call_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/enums/campaign_status_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/enums/campaign_status_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/enums/click_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/enums/click_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/enums/consent_status_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/enums/consent_status_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/enums/criterion_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/enums/criterion_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/enums/customer_status_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/enums/customer_status_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/enums/data_link_status_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/enums/data_link_status_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/enums/data_link_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/enums/data_link_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/enums/day_of_week_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/enums/day_of_week_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/enums/device_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/enums/device_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/enums/distance_bucket_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/enums/distance_bucket_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/enums/experiment_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/enums/experiment_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/enums/fixed_cpm_goal_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/enums/fixed_cpm_goal_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/enums/gender_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/enums/gender_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/enums/hotel_rate_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/enums/hotel_rate_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/enums/insights_trend_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/enums/insights_trend_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/enums/interaction_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/enums/interaction_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/enums/invoice_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/enums/invoice_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/enums/label_status_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/enums/label_status_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/enums/listing_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/enums/listing_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/enums/media_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/enums/media_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/enums/mime_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/enums/mime_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/enums/minute_of_hour_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/enums/minute_of_hour_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/enums/month_of_year_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/enums/month_of_year_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/enums/payment_mode_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/enums/payment_mode_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/enums/placement_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/enums/placement_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/enums/product_channel_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/enums/product_channel_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/enums/product_status_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/enums/product_status_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/enums/shared_set_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/enums/shared_set_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/enums/simulation_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/enums/simulation_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/enums/slot_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/enums/slot_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/enums/time_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/enums/time_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/enums/user_list_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/enums/user_list_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/enums/video_thumbnail_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/enums/video_thumbnail_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/errors/ad_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/errors/ad_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/errors/ad_group_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/errors/ad_group_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/errors/adx_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/errors/adx_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/errors/asset_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/errors/asset_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/errors/asset_set_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/errors/asset_set_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/errors/audience_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/errors/audience_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/errors/batch_job_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/errors/batch_job_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/errors/bidding_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/errors/bidding_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/errors/campaign_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/errors/campaign_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/errors/context_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/errors/context_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/errors/criterion_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/errors/criterion_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/errors/currency_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/errors/currency_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/errors/customer_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/errors/customer_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/errors/data_link_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/errors/data_link_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/errors/database_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/errors/database_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/errors/date_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/errors/date_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/errors/distinct_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/errors/distinct_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/errors/enum_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/errors/enum_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/errors/errors_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/errors/errors_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/errors/feed_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/errors/feed_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/errors/feed_item_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/errors/feed_item_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/errors/field_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/errors/field_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/errors/function_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/errors/function_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/errors/header_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/errors/header_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/errors/id_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/errors/id_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/errors/image_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/errors/image_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/errors/internal_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/errors/internal_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/errors/invoice_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/errors/invoice_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/errors/label_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/errors/label_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/errors/mutate_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/errors/mutate_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/errors/not_empty_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/errors/not_empty_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/errors/null_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/errors/null_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/errors/operator_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/errors/operator_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/errors/query_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/errors/query_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/errors/quota_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/errors/quota_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/errors/range_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/errors/range_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/errors/request_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/errors/request_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/errors/setting_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/errors/setting_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/errors/time_zone_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/errors/time_zone_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/errors/url_field_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/errors/url_field_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/errors/user_data_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/errors/user_data_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/errors/user_list_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/errors/user_list_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/resources/account_link_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/resources/account_link_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/resources/ad_group_ad_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/resources/ad_group_ad_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/resources/ad_group_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/resources/ad_group_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/resources/ad_parameter_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/resources/ad_parameter_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/resources/ad_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/resources/ad_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/resources/asset_group_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/resources/asset_group_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/resources/asset_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/resources/asset_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/resources/asset_set_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/resources/asset_set_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/resources/audience_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/resources/audience_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/resources/batch_job_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/resources/batch_job_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/resources/call_view_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/resources/call_view_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/resources/campaign_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/resources/campaign_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/resources/change_event_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/resources/change_event_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/resources/click_view_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/resources/click_view_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/resources/customer_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/resources/customer_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/resources/data_link_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/resources/data_link_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/resources/experiment_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/resources/experiment_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/resources/gender_view_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/resources/gender_view_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/resources/invoice_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/resources/invoice_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/resources/keyword_plan_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/resources/keyword_plan_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/resources/keyword_view_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/resources/keyword_view_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/resources/label_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/resources/label_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/resources/life_event_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/resources/life_event_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/resources/media_file_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/resources/media_file_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/resources/product_link_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/resources/product_link_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/resources/shared_set_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/resources/shared_set_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/resources/topic_view_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/resources/topic_view_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/resources/user_list_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/resources/user_list_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/resources/video_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/resources/video_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/resources/webpage_view_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/resources/webpage_view_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/services.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/services.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/services/ad_group_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/services/ad_group_service.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/services/ad_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/services/ad_service.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/services/ad_service/paths.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/services/ad_service/paths.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/services/ad_service_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/services/ad_service_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/services/asset_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/services/asset_service.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/services/asset_service_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/services/asset_service_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/services/audience_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/services/audience_service.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/services/campaign_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/services/campaign_service.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/services/customer_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/services/customer_service.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/services/invoice_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/services/invoice_service.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/services/label_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/services/label_service.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v19/services/label_service_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v19/services/label_service_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/common/ad_asset_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/common/ad_asset_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/common/ad_type_infos_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/common/ad_type_infos_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/common/asset_policy_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/common/asset_policy_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/common/asset_set_types_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/common/asset_set_types_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/common/asset_types_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/common/asset_types_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/common/asset_usage_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/common/asset_usage_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/common/audiences_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/common/audiences_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/common/bidding_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/common/bidding_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/common/click_location_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/common/click_location_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/common/consent_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/common/consent_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/common/criteria_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/common/criteria_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/common/dates_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/common/dates_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/common/extensions_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/common/extensions_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/common/feed_common_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/common/feed_common_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/common/final_app_url_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/common/final_app_url_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/common/frequency_cap_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/common/frequency_cap_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/common/lifecycle_goals_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/common/lifecycle_goals_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/common/local_services_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/common/local_services_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/common/metric_goal_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/common/metric_goal_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/common/metrics_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/common/metrics_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/common/policy_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/common/policy_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/common/policy_summary_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/common/policy_summary_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/common/segments_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/common/segments_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/common/simulation_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/common/simulation_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/common/tag_snippet_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/common/tag_snippet_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/common/text_label_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/common/text_label_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/common/url_collection_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/common/url_collection_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/common/user_lists_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/common/user_lists_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/common/value_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/common/value_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/enums/access_reason_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/enums/access_reason_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/enums/access_role_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/enums/access_role_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/enums/ad_format_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/enums/ad_format_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/enums/ad_group_status_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/enums/ad_group_status_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/enums/ad_group_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/enums/ad_group_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/enums/ad_network_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/enums/ad_network_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/enums/ad_strength_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/enums/ad_strength_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/enums/ad_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/enums/ad_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/enums/age_range_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/enums/age_range_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/enums/app_bidding_goal_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/enums/app_bidding_goal_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/enums/asset_field_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/enums/asset_field_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/enums/asset_set_status_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/enums/asset_set_status_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/enums/asset_set_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/enums/asset_set_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/enums/asset_source_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/enums/asset_source_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/enums/asset_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/enums/asset_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/enums/audience_scope_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/enums/audience_scope_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/enums/audience_status_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/enums/audience_status_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/enums/batch_job_status_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/enums/batch_job_status_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/enums/bidding_source_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/enums/bidding_source_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/enums/brand_state_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/enums/brand_state_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/enums/budget_period_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/enums/budget_period_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/enums/budget_status_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/enums/budget_status_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/enums/budget_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/enums/budget_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/enums/call_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/enums/call_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/enums/campaign_status_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/enums/campaign_status_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/enums/click_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/enums/click_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/enums/consent_status_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/enums/consent_status_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/enums/criterion_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/enums/criterion_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/enums/customer_status_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/enums/customer_status_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/enums/data_link_status_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/enums/data_link_status_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/enums/data_link_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/enums/data_link_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/enums/day_of_week_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/enums/day_of_week_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/enums/device_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/enums/device_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/enums/distance_bucket_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/enums/distance_bucket_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/enums/experiment_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/enums/experiment_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/enums/fixed_cpm_goal_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/enums/fixed_cpm_goal_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/enums/gender_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/enums/gender_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/enums/hotel_rate_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/enums/hotel_rate_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/enums/insights_trend_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/enums/insights_trend_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/enums/interaction_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/enums/interaction_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/enums/invoice_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/enums/invoice_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/enums/label_status_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/enums/label_status_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/enums/listing_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/enums/listing_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/enums/media_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/enums/media_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/enums/mime_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/enums/mime_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/enums/minute_of_hour_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/enums/minute_of_hour_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/enums/month_of_year_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/enums/month_of_year_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/enums/payment_mode_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/enums/payment_mode_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/enums/placement_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/enums/placement_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/enums/product_channel_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/enums/product_channel_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/enums/product_status_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/enums/product_status_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/enums/shared_set_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/enums/shared_set_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/enums/simulation_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/enums/simulation_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/enums/slot_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/enums/slot_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/enums/time_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/enums/time_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/enums/user_list_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/enums/user_list_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/enums/video_thumbnail_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/enums/video_thumbnail_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/errors/ad_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/errors/ad_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/errors/ad_group_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/errors/ad_group_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/errors/adx_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/errors/adx_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/errors/asset_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/errors/asset_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/errors/asset_set_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/errors/asset_set_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/errors/audience_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/errors/audience_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/errors/batch_job_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/errors/batch_job_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/errors/bidding_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/errors/bidding_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/errors/campaign_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/errors/campaign_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/errors/context_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/errors/context_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/errors/criterion_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/errors/criterion_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/errors/currency_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/errors/currency_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/errors/customer_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/errors/customer_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/errors/data_link_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/errors/data_link_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/errors/database_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/errors/database_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/errors/date_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/errors/date_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/errors/distinct_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/errors/distinct_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/errors/enum_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/errors/enum_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/errors/errors_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/errors/errors_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/errors/feed_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/errors/feed_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/errors/feed_item_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/errors/feed_item_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/errors/field_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/errors/field_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/errors/function_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/errors/function_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/errors/header_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/errors/header_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/errors/id_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/errors/id_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/errors/image_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/errors/image_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/errors/internal_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/errors/internal_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/errors/invoice_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/errors/invoice_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/errors/label_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/errors/label_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/errors/mutate_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/errors/mutate_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/errors/not_empty_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/errors/not_empty_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/errors/null_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/errors/null_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/errors/operator_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/errors/operator_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/errors/query_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/errors/query_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/errors/quota_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/errors/quota_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/errors/range_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/errors/range_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/errors/request_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/errors/request_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/errors/setting_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/errors/setting_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/errors/time_zone_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/errors/time_zone_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/errors/url_field_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/errors/url_field_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/errors/user_data_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/errors/user_data_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/errors/user_list_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/errors/user_list_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/resources/account_link_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/resources/account_link_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/resources/ad_group_ad_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/resources/ad_group_ad_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/resources/ad_group_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/resources/ad_group_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/resources/ad_parameter_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/resources/ad_parameter_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/resources/ad_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/resources/ad_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/resources/asset_group_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/resources/asset_group_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/resources/asset_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/resources/asset_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/resources/asset_set_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/resources/asset_set_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/resources/audience_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/resources/audience_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/resources/batch_job_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/resources/batch_job_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/resources/call_view_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/resources/call_view_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/resources/campaign_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/resources/campaign_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/resources/change_event_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/resources/change_event_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/resources/click_view_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/resources/click_view_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/resources/customer_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/resources/customer_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/resources/data_link_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/resources/data_link_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/resources/experiment_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/resources/experiment_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/resources/gender_view_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/resources/gender_view_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/resources/invoice_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/resources/invoice_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/resources/keyword_plan_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/resources/keyword_plan_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/resources/keyword_view_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/resources/keyword_view_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/resources/label_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/resources/label_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/resources/life_event_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/resources/life_event_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/resources/media_file_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/resources/media_file_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/resources/product_link_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/resources/product_link_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/resources/shared_set_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/resources/shared_set_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/resources/topic_view_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/resources/topic_view_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/resources/user_list_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/resources/user_list_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/resources/video_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/resources/video_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/resources/webpage_view_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/resources/webpage_view_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/services.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/services.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/services/ad_group_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/services/ad_group_service.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/services/ad_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/services/ad_service.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/services/ad_service/paths.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/services/ad_service/paths.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/services/ad_service_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/services/ad_service_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/services/asset_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/services/asset_service.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/services/asset_service_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/services/asset_service_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/services/audience_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/services/audience_service.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/services/campaign_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/services/campaign_service.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/services/customer_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/services/customer_service.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/services/invoice_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/services/invoice_service.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/services/label_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/services/label_service.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v20/services/label_service_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v20/services/label_service_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/common/ad_asset_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/common/ad_asset_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/common/ad_type_infos_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/common/ad_type_infos_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/common/asset_policy_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/common/asset_policy_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/common/asset_set_types_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/common/asset_set_types_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/common/asset_types_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/common/asset_types_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/common/asset_usage_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/common/asset_usage_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/common/audiences_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/common/audiences_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/common/bidding_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/common/bidding_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/common/click_location_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/common/click_location_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/common/consent_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/common/consent_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/common/criteria_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/common/criteria_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/common/dates_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/common/dates_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/common/extensions_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/common/extensions_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/common/feed_common_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/common/feed_common_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/common/final_app_url_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/common/final_app_url_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/common/frequency_cap_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/common/frequency_cap_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/common/lifecycle_goals_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/common/lifecycle_goals_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/common/local_services_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/common/local_services_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/common/metric_goal_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/common/metric_goal_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/common/metrics_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/common/metrics_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/common/policy_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/common/policy_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/common/policy_summary_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/common/policy_summary_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/common/segments_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/common/segments_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/common/simulation_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/common/simulation_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/common/tag_snippet_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/common/tag_snippet_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/common/text_label_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/common/text_label_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/common/url_collection_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/common/url_collection_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/common/user_lists_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/common/user_lists_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/common/value_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/common/value_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/enums/access_reason_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/enums/access_reason_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/enums/access_role_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/enums/access_role_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/enums/ad_format_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/enums/ad_format_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/enums/ad_group_status_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/enums/ad_group_status_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/enums/ad_group_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/enums/ad_group_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/enums/ad_network_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/enums/ad_network_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/enums/ad_strength_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/enums/ad_strength_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/enums/ad_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/enums/ad_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/enums/age_range_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/enums/age_range_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/enums/app_bidding_goal_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/enums/app_bidding_goal_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/enums/asset_field_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/enums/asset_field_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/enums/asset_set_status_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/enums/asset_set_status_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/enums/asset_set_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/enums/asset_set_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/enums/asset_source_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/enums/asset_source_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/enums/asset_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/enums/asset_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/enums/audience_scope_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/enums/audience_scope_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/enums/audience_status_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/enums/audience_status_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/enums/batch_job_status_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/enums/batch_job_status_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/enums/bidding_source_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/enums/bidding_source_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/enums/brand_state_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/enums/brand_state_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/enums/budget_period_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/enums/budget_period_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/enums/budget_status_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/enums/budget_status_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/enums/budget_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/enums/budget_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/enums/call_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/enums/call_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/enums/campaign_status_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/enums/campaign_status_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/enums/click_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/enums/click_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/enums/consent_status_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/enums/consent_status_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/enums/criterion_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/enums/criterion_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/enums/customer_status_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/enums/customer_status_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/enums/data_link_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/enums/data_link_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/enums/day_of_week_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/enums/day_of_week_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/enums/device_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/enums/device_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/enums/fixed_cpm_goal_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/enums/fixed_cpm_goal_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/enums/gender_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/enums/gender_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/enums/insights_trend_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/enums/insights_trend_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/enums/invoice_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/enums/invoice_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/enums/label_status_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/enums/label_status_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/enums/listing_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/enums/listing_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/enums/match_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/enums/match_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/enums/media_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/enums/media_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/enums/mime_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/enums/mime_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/enums/minute_of_hour_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/enums/minute_of_hour_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/enums/month_of_year_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/enums/month_of_year_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/enums/payment_mode_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/enums/payment_mode_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/enums/placement_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/enums/placement_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/enums/product_status_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/enums/product_status_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/enums/slot_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/enums/slot_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/enums/time_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/enums/time_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/enums/user_list_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/enums/user_list_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/errors/ad_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/errors/ad_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/errors/adx_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/errors/adx_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/errors/asset_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/errors/asset_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/errors/bidding_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/errors/bidding_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/errors/context_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/errors/context_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/errors/date_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/errors/date_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/errors/enum_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/errors/enum_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/errors/errors_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/errors/errors_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/errors/feed_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/errors/feed_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/errors/field_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/errors/field_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/errors/header_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/errors/header_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/errors/id_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/errors/id_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/errors/image_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/errors/image_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/errors/invoice_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/errors/invoice_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/errors/label_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/errors/label_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/errors/mutate_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/errors/mutate_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/errors/null_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/errors/null_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/errors/query_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/errors/query_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/errors/quota_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/errors/quota_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/errors/range_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/errors/range_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/errors/request_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/errors/request_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/errors/setting_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/errors/setting_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/resources/ad_group_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/resources/ad_group_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/resources/ad_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/resources/ad_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/resources/asset_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/resources/asset_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/resources/asset_set_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/resources/asset_set_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/resources/audience_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/resources/audience_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/resources/batch_job_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/resources/batch_job_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/resources/call_view_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/resources/call_view_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/resources/campaign_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/resources/campaign_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/resources/click_view_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/resources/click_view_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/resources/customer_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/resources/customer_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/resources/data_link_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/resources/data_link_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/resources/experiment_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/resources/experiment_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/resources/invoice_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/resources/invoice_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/resources/label_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/resources/label_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/resources/life_event_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/resources/life_event_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/resources/media_file_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/resources/media_file_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/resources/shared_set_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/resources/shared_set_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/resources/topic_view_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/resources/topic_view_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/resources/user_list_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/resources/user_list_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/resources/video_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/resources/video_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/services.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/services.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/services/ad_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/services/ad_service.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/services/ad_service_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/services/ad_service_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/services/asset_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/services/asset_service.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v21/services/label_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v21/services/label_service.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/common/ad_asset_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/common/ad_asset_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/common/ad_type_infos_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/common/ad_type_infos_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/common/asset_policy_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/common/asset_policy_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/common/asset_types_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/common/asset_types_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/common/asset_usage_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/common/asset_usage_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/common/audiences_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/common/audiences_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/common/bidding_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/common/bidding_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/common/consent_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/common/consent_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/common/criteria_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/common/criteria_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/common/dates_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/common/dates_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/common/extensions_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/common/extensions_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/common/feed_common_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/common/feed_common_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/common/final_app_url_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/common/final_app_url_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/common/frequency_cap_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/common/frequency_cap_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/common/goal_common_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/common/goal_common_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/common/goal_setting_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/common/goal_setting_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/common/metric_goal_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/common/metric_goal_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/common/metrics_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/common/metrics_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/common/policy_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/common/policy_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/common/segments_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/common/segments_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/common/simulation_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/common/simulation_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/common/tag_snippet_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/common/tag_snippet_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/common/text_label_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/common/text_label_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/common/user_lists_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/common/user_lists_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/common/value_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/common/value_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/enums/access_reason_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/enums/access_reason_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/enums/access_role_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/enums/access_role_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/enums/ad_format_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/enums/ad_format_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/enums/ad_group_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/enums/ad_group_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/enums/ad_strength_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/enums/ad_strength_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/enums/ad_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/enums/ad_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/enums/age_range_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/enums/age_range_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/enums/asset_set_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/enums/asset_set_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/enums/asset_source_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/enums/asset_source_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/enums/asset_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/enums/asset_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/enums/audience_scope_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/enums/audience_scope_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/enums/bidding_source_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/enums/bidding_source_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/enums/brand_state_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/enums/brand_state_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/enums/budget_period_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/enums/budget_period_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/enums/budget_status_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/enums/budget_status_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/enums/budget_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/enums/budget_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/enums/call_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/enums/call_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/enums/click_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/enums/click_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/enums/consent_status_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/enums/consent_status_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/enums/criterion_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/enums/criterion_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/enums/data_link_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/enums/data_link_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/enums/day_of_week_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/enums/day_of_week_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/enums/device_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/enums/device_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/enums/fixed_cpm_goal_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/enums/fixed_cpm_goal_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/enums/gender_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/enums/gender_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/enums/goal_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/enums/goal_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/enums/insights_trend_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/enums/insights_trend_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/enums/invoice_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/enums/invoice_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/enums/label_status_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/enums/label_status_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/enums/listing_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/enums/listing_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/enums/match_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/enums/match_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/enums/media_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/enums/media_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/enums/mime_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/enums/mime_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/enums/minute_of_hour_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/enums/minute_of_hour_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/enums/month_of_year_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/enums/month_of_year_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/enums/payment_mode_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/enums/payment_mode_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/enums/placement_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/enums/placement_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/enums/product_status_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/enums/product_status_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/enums/slot_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/enums/slot_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/enums/time_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/enums/time_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/enums/user_list_type_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/enums/user_list_type_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/errors/ad_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/errors/ad_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/errors/adx_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/errors/adx_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/errors/asset_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/errors/asset_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/errors/bidding_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/errors/bidding_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/errors/context_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/errors/context_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/errors/date_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/errors/date_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/errors/enum_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/errors/enum_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/errors/errors_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/errors/errors_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/errors/feed_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/errors/feed_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/errors/field_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/errors/field_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/errors/goal_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/errors/goal_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/errors/header_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/errors/header_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/errors/id_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/errors/id_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/errors/image_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/errors/image_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/errors/invoice_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/errors/invoice_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/errors/label_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/errors/label_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/errors/mutate_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/errors/mutate_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/errors/null_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/errors/null_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/errors/query_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/errors/query_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/errors/quota_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/errors/quota_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/errors/range_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/errors/range_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/errors/request_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/errors/request_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/errors/setting_error_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/errors/setting_error_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/resources/ad_group_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/resources/ad_group_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/resources/ad_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/resources/ad_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/resources/asset_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/resources/asset_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/resources/asset_set_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/resources/asset_set_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/resources/audience_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/resources/audience_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/resources/batch_job_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/resources/batch_job_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/resources/call_view_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/resources/call_view_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/resources/campaign_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/resources/campaign_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/resources/click_view_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/resources/click_view_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/resources/customer_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/resources/customer_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/resources/data_link_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/resources/data_link_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/resources/experiment_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/resources/experiment_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/resources/goal_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/resources/goal_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/resources/invoice_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/resources/invoice_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/resources/label_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/resources/label_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/resources/life_event_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/resources/life_event_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/resources/media_file_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/resources/media_file_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/resources/shared_set_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/resources/shared_set_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/resources/topic_view_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/resources/topic_view_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/resources/user_list_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/resources/user_list_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/resources/video_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/resources/video_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/services.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/services.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/services/ad_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/services/ad_service.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/services/ad_service_pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/services/ad_service_pb.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/services/asset_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/services/asset_service.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/services/goal_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/services/goal_service.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/v22/services/label_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/v22/services/label_service.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/version.rb -------------------------------------------------------------------------------- /lib/google/ads/google_ads/version_alternate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/lib/google/ads/google_ads/version_alternate.rb -------------------------------------------------------------------------------- /scripts/codegen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/scripts/codegen.sh -------------------------------------------------------------------------------- /scripts/fix-codegen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/scripts/fix-codegen.sh -------------------------------------------------------------------------------- /scripts/regen-boilerplate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/scripts/regen-boilerplate.sh -------------------------------------------------------------------------------- /scripts/validate_protos.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/scripts/validate_protos.rb -------------------------------------------------------------------------------- /test/deprecation_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/test/deprecation_test.rb -------------------------------------------------------------------------------- /test/fixtures/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/test/fixtures/config.rb -------------------------------------------------------------------------------- /test/fixtures/keyfile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/test/fixtures/keyfile.json -------------------------------------------------------------------------------- /test/fixtures/sam.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/test/fixtures/sam.jpg -------------------------------------------------------------------------------- /test/test_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/test/test_config.rb -------------------------------------------------------------------------------- /test/test_errors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/test/test_errors.rb -------------------------------------------------------------------------------- /test/test_field_mask_util.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/test/test_field_mask_util.rb -------------------------------------------------------------------------------- /test/test_google_ads.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/test/test_google_ads.rb -------------------------------------------------------------------------------- /test/test_google_ads_client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/test/test_google_ads_client.rb -------------------------------------------------------------------------------- /test/test_logging_interceptor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/test/test_logging_interceptor.rb -------------------------------------------------------------------------------- /test/test_lookup_util.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/test/test_lookup_util.rb -------------------------------------------------------------------------------- /test/test_object_creation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/test/test_object_creation.rb -------------------------------------------------------------------------------- /test/test_path_lookup_util.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/test/test_path_lookup_util.rb -------------------------------------------------------------------------------- /test/test_service_wrapper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/test/test_service_wrapper.rb -------------------------------------------------------------------------------- /test/version_alternate_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/test/version_alternate_test.rb -------------------------------------------------------------------------------- /third_party/rspec/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/third_party/rspec/LICENSE -------------------------------------------------------------------------------- /third_party/rspec/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/third_party/rspec/METADATA -------------------------------------------------------------------------------- /third_party/rspec/caller_filter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/google-ads-ruby/HEAD/third_party/rspec/caller_filter.rb --------------------------------------------------------------------------------