Built motion from commit 6a09e18b.|2.6.11
[motion2.git] / legacy-libs / google-proto-files / google / type / calendar_period.proto
1 // Copyright 2019 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.type;
19
20 option go_package = "google.golang.org/genproto/googleapis/type/calendarperiod;calendarperiod";
21 option java_multiple_files = true;
22 option java_outer_classname = "CalendarPeriodProto";
23 option java_package = "com.google.type";
24 option objc_class_prefix = "GTP";
25
26
27 // A `CalendarPeriod` represents the abstract concept of a time period that has
28 // a canonical start. Grammatically, "the start of the current
29 // `CalendarPeriod`." All calendar times begin at midnight UTC.
30 enum CalendarPeriod {
31   // Undefined period, raises an error.
32   CALENDAR_PERIOD_UNSPECIFIED = 0;
33
34   // A day.
35   DAY = 1;
36
37   // A week. Weeks begin on Monday, following
38   // [ISO 8601](https://en.wikipedia.org/wiki/ISO_week_date).
39   WEEK = 2;
40
41   // A fortnight. The first calendar fortnight of the year begins at the start
42   // of week 1 according to
43   // [ISO 8601](https://en.wikipedia.org/wiki/ISO_week_date).
44   FORTNIGHT = 3;
45
46   // A month.
47   MONTH = 4;
48
49   // A quarter. Quarters start on dates 1-Jan, 1-Apr, 1-Jul, and 1-Oct of each
50   // year.
51   QUARTER = 5;
52
53   // A half-year. Half-years start on dates 1-Jan and 1-Jul.
54   HALF = 6;
55
56   // A year.
57   YEAR = 7;
58 }