Index
CalendarPeriod
(enum)Interval
(message)TimeOfDay
(message)
CalendarPeriod
A CalendarPeriod
represents the abstract concept of a time period that has a canonical start. Grammatically, "the start of the current CalendarPeriod
." All calendar times begin at midnight UTC.
Enums | |
---|---|
CALENDAR_PERIOD_UNSPECIFIED |
Undefined period, raises an error. |
DAY |
A day. |
WEEK |
A week. Weeks begin on Monday, following ISO 8601. |
FORTNIGHT |
A fortnight. The first calendar fortnight of the year begins at the start of week 1 according to ISO 8601. |
MONTH |
A month. |
QUARTER |
A quarter. Quarters start on dates 1-Jan, 1-Apr, 1-Jul, and 1-Oct of each year. |
HALF |
A half-year. Half-years start on dates 1-Jan and 1-Jul. |
YEAR |
A year. |
Interval
Represents a time interval, encoded as a Timestamp start (inclusive) and a Timestamp end (exclusive).
The start must be less than or equal to the end. When the start equals the end, the interval is empty (matches no time). When both start and end are unspecified, the interval matches any time.
Fields | |
---|---|
start_ |
Optional. Inclusive start of the interval. If specified, a Timestamp matching this interval will have to be the same or after the start. |
end_ |
Optional. Exclusive end of the interval. If specified, a Timestamp matching this interval will have to be before the end. |
TimeOfDay
Represents a time of day. The date and time zone are either not significant or are specified elsewhere. An API may choose to allow leap seconds. Related types are google.type.Date
and google.protobuf.Timestamp
.
Fields | |
---|---|
hours |
Hours of a day in 24 hour format. Must be greater than or equal to 0 and typically must be less than or equal to 23. An API may choose to allow the value "24:00:00" for scenarios like business closing time. |
minutes |
Minutes of an hour. Must be greater than or equal to 0 and less than or equal to 59. |
seconds |
Seconds of a minute. Must be greater than or equal to 0 and typically must be less than or equal to 59. An API may allow the value 60 if it allows leap-seconds. |
nanos |
Fractions of seconds, in nanoseconds. Must be greater than or equal to 0 and less than or equal to 999,999,999. |