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 19option cc_enable_arenas = true; 20option go_package = "google.golang.org/genproto/googleapis/type/timeofday;timeofday"; 21option java_multiple_files = true; 22option java_outer_classname = "TimeOfDayProto"; 23option java_package = "com.google.type"; 24option objc_class_prefix = "GTP"; 25 26// Represents a time of day. The date and time zone are either not significant 27// or are specified elsewhere. An API may choose to allow leap seconds. Related 28// types are [google.type.Date][google.type.Date] and 29// `google.protobuf.Timestamp`. 30message TimeOfDay { 31 // Hours of day in 24 hour format. Should be from 0 to 23. An API may choose 32 // to allow the value "24:00:00" for scenarios like business closing time. 33 int32 hours = 1; 34 35 // Minutes of hour of day. Must be from 0 to 59. 36 int32 minutes = 2; 37 38 // Seconds of minutes of the time. Must normally be from 0 to 59. An API may 39 // allow the value 60 if it allows leap-seconds. 40 int32 seconds = 3; 41 42 // Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999. 43 int32 nanos = 4; 44} 45