Google 课堂插件现已面向开发者正式推出!如需了解详情,请参阅
插件文档。
TimeOfDay
表示一天中的某个时间。日期和时区不重要,或在别处指定。API 可以选择允许闰秒。相关类型为 google.type.Date
和 google.protobuf.Timestamp
。
JSON 表示法 |
{
"hours": integer,
"minutes": integer,
"seconds": integer,
"nanos": integer
} |
字段 |
hours |
integer
一天中的时段(采用 24 小时制)。必须大于或等于 0,通常必须小于或等于 23。对于业务结束时间等场景,API 可以选择允许“24:00:00”一值。
|
minutes |
integer
一小时中的分钟数。必须大于或等于 0,小于或等于 59。
|
seconds |
integer
一分钟中的秒数。必须大于或等于 0,通常必须小于或等于 59。如果 API 允许闰秒,则 API 可以允许 60 一值。
|
nanos |
integer
秒数的小数部分(以纳秒为单位)。必须大于或等于 0,且小于或等于 999,999,999。
|
如未另行说明,那么本页面中的内容已根据知识共享署名 4.0 许可获得了许可,并且代码示例已根据 Apache 2.0 许可获得了许可。有关详情,请参阅 Google 开发者网站政策。Java 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2024-12-06。
[null,null,["最后更新时间 (UTC):2024-12-06。"],[[["TimeOfDay represents a specific time without date or timezone information, focusing on hours, minutes, seconds, and nanoseconds."],["It uses a JSON structure with fields for hours (0-23, potentially 24), minutes (0-59), seconds (0-59, possibly 60 for leap seconds), and nanoseconds (0-999,999,999)."],["TimeOfDay is related to `google.type.Date` and `google.protobuf.Timestamp` but is distinct in its focus on the time component."],["APIs using TimeOfDay can allow for flexibility like representing business closing time with \"24:00:00\" or accommodating leap seconds."]]],[]]