123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- syntax = "proto3";
- package google.ads.googleads.v11.common;
- import "google/ads/googleads/v11/enums/matching_function_context_type.proto";
- import "google/ads/googleads/v11/enums/matching_function_operator.proto";
- option csharp_namespace = "Google.Ads.GoogleAds.V11.Common";
- option go_package = "google.golang.org/genproto/googleapis/ads/googleads/v11/common;common";
- option java_multiple_files = true;
- option java_outer_classname = "MatchingFunctionProto";
- option java_package = "com.google.ads.googleads.v11.common";
- option objc_class_prefix = "GAA";
- option php_namespace = "Google\\Ads\\GoogleAds\\V11\\Common";
- option ruby_package = "Google::Ads::GoogleAds::V11::Common";
- message MatchingFunction {
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- optional string function_string = 5;
-
- google.ads.googleads.v11.enums.MatchingFunctionOperatorEnum.MatchingFunctionOperator operator = 4;
-
-
- repeated Operand left_operands = 2;
-
- repeated Operand right_operands = 3;
- }
- message Operand {
-
- message ConstantOperand {
-
- oneof constant_operand_value {
-
- string string_value = 5;
-
- int64 long_value = 6;
-
- bool boolean_value = 7;
-
- double double_value = 8;
- }
- }
-
-
- message FeedAttributeOperand {
-
- optional int64 feed_id = 3;
-
- optional int64 feed_attribute_id = 4;
- }
-
-
- message FunctionOperand {
-
- MatchingFunction matching_function = 1;
- }
-
- message RequestContextOperand {
-
- google.ads.googleads.v11.enums.MatchingFunctionContextTypeEnum.MatchingFunctionContextType context_type = 1;
- }
-
- oneof function_argument_operand {
-
- ConstantOperand constant_operand = 1;
-
- FeedAttributeOperand feed_attribute_operand = 2;
-
-
- FunctionOperand function_operand = 3;
-
- RequestContextOperand request_context_operand = 4;
- }
- }
|