Built motion from commit 6a09e18b.|2.6.11
[motion2.git] / legacy-libs / google-proto-files / google / ads / googleads / v0 / enums / promotion_placeholder_field.proto
1 // Copyright 2018 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 //
15
16 syntax = "proto3";
17
18 package google.ads.googleads.v0.enums;
19
20 option csharp_namespace = "Google.Ads.GoogleAds.V0.Enums";
21 option go_package = "google.golang.org/genproto/googleapis/ads/googleads/v0/enums;enums";
22 option java_multiple_files = true;
23 option java_outer_classname = "PromotionPlaceholderFieldProto";
24 option java_package = "com.google.ads.googleads.v0.enums";
25 option objc_class_prefix = "GAA";
26 option php_namespace = "Google\\Ads\\GoogleAds\\V0\\Enums";
27 option ruby_package = "Google::Ads::GoogleAds::V0::Enums";
28
29 // Proto file describing Promotion placeholder fields.
30
31 // Values for Promotion placeholder fields.
32 message PromotionPlaceholderFieldEnum {
33   // Possible values for Promotion placeholder fields.
34   enum PromotionPlaceholderField {
35     // Not specified.
36     UNSPECIFIED = 0;
37
38     // Used for return value only. Represents value unknown in this version.
39     UNKNOWN = 1;
40
41     // Data Type: STRING. The text that appears on the ad when the extension is
42     // shown.
43     PROMOTION_TARGET = 2;
44
45     // Data Type: STRING. Allows you to add "up to" phrase to the promotion,
46     // in case you have variable promotion rates.
47     DISCOUNT_MODIFIER = 3;
48
49     // Data Type: INT64. Takes a value in micros, where 1 million micros
50     // represents 1%, and is shown as a percentage when rendered.
51     PERCENT_OFF = 4;
52
53     // Data Type: PRICE. Requires a currency and an amount of money.
54     MONEY_AMOUNT_OFF = 5;
55
56     // Data Type: STRING. A string that the user enters to get the discount.
57     PROMOTION_CODE = 6;
58
59     // Data Type: PRICE. A minimum spend before the user qualifies for the
60     // promotion.
61     ORDERS_OVER_AMOUNT = 7;
62
63     // Data Type: DATE. The start date of the promotion.
64     PROMOTION_START = 8;
65
66     // Data Type: DATE. The end date of the promotion.
67     PROMOTION_END = 9;
68
69     // Data Type: STRING. Describes the associated event for the promotion using
70     // one of the PromotionExtensionOccasion enum values, for example NEW_YEARS.
71     OCCASION = 10;
72
73     // Data Type: URL_LIST. Final URLs to be used in the ad when using Upgraded
74     // URLs.
75     FINAL_URLS = 11;
76
77     // Data Type: URL_LIST. Final mobile URLs for the ad when using Upgraded
78     // URLs.
79     FINAL_MOBILE_URLS = 12;
80
81     // Data Type: URL. Tracking template for the ad when using Upgraded URLs.
82     TRACKING_URL = 13;
83
84     // Data Type: STRING. A string represented by a language code for the
85     // promotion.
86     LANGUAGE = 14;
87
88     // Data Type: STRING. Final URL suffix for the ad when using parallel
89     // tracking.
90     FINAL_URL_SUFFIX = 15;
91   }
92 }