• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// Copyright 2021 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.type;
18
19import "google/protobuf/timestamp.proto";
20
21option cc_enable_arenas = true;
22option go_package = "google.golang.org/genproto/googleapis/type/interval;interval";
23option java_multiple_files = true;
24option java_outer_classname = "IntervalProto";
25option java_package = "com.google.type";
26option objc_class_prefix = "GTP";
27
28// Represents a time interval, encoded as a Timestamp start (inclusive) and a
29// Timestamp end (exclusive).
30//
31// The start must be less than or equal to the end.
32// When the start equals the end, the interval is empty (matches no time).
33// When both start and end are unspecified, the interval matches any time.
34message Interval {
35  // Optional. Inclusive start of the interval.
36  //
37  // If specified, a Timestamp matching this interval will have to be the same
38  // or after the start.
39  google.protobuf.Timestamp start_time = 1;
40
41  // Optional. Exclusive end of the interval.
42  //
43  // If specified, a Timestamp matching this interval will have to be before the
44  // end.
45  google.protobuf.Timestamp end_time = 2;
46}
47