1// Copyright 2023 Google LLC 2// 3// Licensed under the Apache License, Version 2.0 (the "License"); 4// you may not use this file except in compliance with the License. 5// You may obtain a copy of the License at 6// 7// http://www.apache.org/licenses/LICENSE-2.0 8// 9// Unless required by applicable law or agreed to in writing, software 10// distributed under the License is distributed on an "AS IS" BASIS, 11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12// See the License for the specific language governing permissions and 13// limitations under the License. 14 15syntax = "proto3"; 16 17package google.ads.googleads.v16.enums; 18 19option csharp_namespace = "Google.Ads.GoogleAds.V16.Enums"; 20option go_package = "google.golang.org/genproto/googleapis/ads/googleads/v16/enums;enums"; 21option java_multiple_files = true; 22option java_outer_classname = "ExperimentTypeProto"; 23option java_package = "com.google.ads.googleads.v16.enums"; 24option objc_class_prefix = "GAA"; 25option php_namespace = "Google\\Ads\\GoogleAds\\V16\\Enums"; 26option ruby_package = "Google::Ads::GoogleAds::V16::Enums"; 27 28// Proto file describing experiment type. 29 30// Container for enum describing the type of experiment. 31message ExperimentTypeEnum { 32 // The type of the experiment. 33 enum ExperimentType { 34 // Not specified. 35 UNSPECIFIED = 0; 36 37 // The value is unknown in this version. 38 UNKNOWN = 1; 39 40 // This is a DISPLAY_AND_VIDEO_360 experiment. 41 DISPLAY_AND_VIDEO_360 = 2; 42 43 // This is an ad variation experiment. 44 AD_VARIATION = 3; 45 46 // A custom experiment consisting of Video campaigns. 47 YOUTUBE_CUSTOM = 5; 48 49 // A custom experiment consisting of display campaigns. 50 DISPLAY_CUSTOM = 6; 51 52 // A custom experiment consisting of search campaigns. 53 SEARCH_CUSTOM = 7; 54 55 // An experiment that compares bidding strategies for display campaigns. 56 DISPLAY_AUTOMATED_BIDDING_STRATEGY = 8; 57 58 // An experiment that compares bidding strategies for search campaigns." 59 SEARCH_AUTOMATED_BIDDING_STRATEGY = 9; 60 61 // An experiment that compares bidding strategies for shopping campaigns. 62 SHOPPING_AUTOMATED_BIDDING_STRATEGY = 10; 63 64 // DEPRECATED. A smart matching experiment with search campaigns. 65 SMART_MATCHING = 11; 66 67 // A custom experiment consisting of hotel campaigns. 68 HOTEL_CUSTOM = 12; 69 } 70} 71