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 和 999999999 之间的数字。
|
如未另行说明,那么本页面中的内容已根据知识共享署名 4.0 许可获得了许可,并且代码示例已根据 Apache 2.0 许可获得了许可。有关详情,请参阅 Google 开发者网站政策。Java 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2024-08-22。
[null,null,["最后更新时间 (UTC):2024-08-22。"],[[["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."]]],[]]