3333public final class TimeOfDay extends com .google .api .client .json .GenericJson {
3434
3535 /**
36- * Hours of day in 24 hour format. Should be from 0 to 23. An API may choose to allow the value
37- * "24:00:00" for scenarios like business closing time.
36+ * Hours of a day in 24 hour format. Must be greater than or equal to 0 and typically must be less
37+ * than or equal to 23. An API may choose to allow the value "24:00:00" for scenarios like
38+ * business closing time.
3839 * The value may be {@code null}.
3940 */
4041 @ com .google .api .client .util .Key
4142 private java .lang .Integer hours ;
4243
4344 /**
44- * Minutes of hour of day . Must be from 0 to 59.
45+ * Minutes of an hour . Must be greater than or equal to 0 and less than or equal to 59.
4546 * The value may be {@code null}.
4647 */
4748 @ com .google .api .client .util .Key
4849 private java .lang .Integer minutes ;
4950
5051 /**
51- * Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
52+ * Fractions of seconds, in nanoseconds. Must be greater than or equal to 0 and less than or equal
53+ * to 999,999,999.
5254 * The value may be {@code null}.
5355 */
5456 @ com .google .api .client .util .Key
5557 private java .lang .Integer nanos ;
5658
5759 /**
58- * Seconds of minutes of the time . Must normally be from 0 to 59. An API may allow the value 60 if
59- * it allows leap-seconds.
60+ * Seconds of a minute . Must be greater than or equal to 0 and typically must be less than or
61+ * equal to 59. An API may allow the value 60 if it allows leap-seconds.
6062 * The value may be {@code null}.
6163 */
6264 @ com .google .api .client .util .Key
6365 private java .lang .Integer seconds ;
6466
6567 /**
66- * Hours of day in 24 hour format. Should be from 0 to 23. An API may choose to allow the value
67- * "24:00:00" for scenarios like business closing time.
68+ * Hours of a day in 24 hour format. Must be greater than or equal to 0 and typically must be less
69+ * than or equal to 23. An API may choose to allow the value "24:00:00" for scenarios like
70+ * business closing time.
6871 * @return value or {@code null} for none
6972 */
7073 public java .lang .Integer getHours () {
7174 return hours ;
7275 }
7376
7477 /**
75- * Hours of day in 24 hour format. Should be from 0 to 23. An API may choose to allow the value
76- * "24:00:00" for scenarios like business closing time.
78+ * Hours of a day in 24 hour format. Must be greater than or equal to 0 and typically must be less
79+ * than or equal to 23. An API may choose to allow the value "24:00:00" for scenarios like
80+ * business closing time.
7781 * @param hours hours or {@code null} for none
7882 */
7983 public TimeOfDay setHours (java .lang .Integer hours ) {
@@ -82,15 +86,15 @@ public TimeOfDay setHours(java.lang.Integer hours) {
8286 }
8387
8488 /**
85- * Minutes of hour of day . Must be from 0 to 59.
89+ * Minutes of an hour . Must be greater than or equal to 0 and less than or equal to 59.
8690 * @return value or {@code null} for none
8791 */
8892 public java .lang .Integer getMinutes () {
8993 return minutes ;
9094 }
9195
9296 /**
93- * Minutes of hour of day . Must be from 0 to 59.
97+ * Minutes of an hour . Must be greater than or equal to 0 and less than or equal to 59.
9498 * @param minutes minutes or {@code null} for none
9599 */
96100 public TimeOfDay setMinutes (java .lang .Integer minutes ) {
@@ -99,15 +103,17 @@ public TimeOfDay setMinutes(java.lang.Integer minutes) {
99103 }
100104
101105 /**
102- * Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
106+ * Fractions of seconds, in nanoseconds. Must be greater than or equal to 0 and less than or equal
107+ * to 999,999,999.
103108 * @return value or {@code null} for none
104109 */
105110 public java .lang .Integer getNanos () {
106111 return nanos ;
107112 }
108113
109114 /**
110- * Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
115+ * Fractions of seconds, in nanoseconds. Must be greater than or equal to 0 and less than or equal
116+ * to 999,999,999.
111117 * @param nanos nanos or {@code null} for none
112118 */
113119 public TimeOfDay setNanos (java .lang .Integer nanos ) {
@@ -116,17 +122,17 @@ public TimeOfDay setNanos(java.lang.Integer nanos) {
116122 }
117123
118124 /**
119- * Seconds of minutes of the time . Must normally be from 0 to 59. An API may allow the value 60 if
120- * it allows leap-seconds.
125+ * Seconds of a minute . Must be greater than or equal to 0 and typically must be less than or
126+ * equal to 59. An API may allow the value 60 if it allows leap-seconds.
121127 * @return value or {@code null} for none
122128 */
123129 public java .lang .Integer getSeconds () {
124130 return seconds ;
125131 }
126132
127133 /**
128- * Seconds of minutes of the time . Must normally be from 0 to 59. An API may allow the value 60 if
129- * it allows leap-seconds.
134+ * Seconds of a minute . Must be greater than or equal to 0 and typically must be less than or
135+ * equal to 59. An API may allow the value 60 if it allows leap-seconds.
130136 * @param seconds seconds or {@code null} for none
131137 */
132138 public TimeOfDay setSeconds (java .lang .Integer seconds ) {
0 commit comments