timeofday.proto 1.6 KB

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