Skip to content

Commit 0a5a28a

Browse files
chore: regenerate mybusinessbusinessinformation client (googleapis#23583)
Generated in GitHub action: https://togithub.com/googleapis/googleapis/google-api-java-client-services/actions/workflows/codegen.yaml
1 parent d3f22c2 commit 0a5a28a

File tree

4 files changed

+30
-24
lines changed

4 files changed

+30
-24
lines changed

clients/google-api-services-mybusinessbusinessinformation/v1/2.0.0/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-mybusinessbusinessinformation</artifactId>
25-
<version>v1-rev20231127-2.0.0</version>
25+
<version>v1-rev20241002-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-mybusinessbusinessinformation:v1-rev20231127-2.0.0'
38+
implementation 'com.google.apis:google-api-services-mybusinessbusinessinformation:v1-rev20241002-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-mybusinessbusinessinformation/v1/2.0.0/com/google/api/services/mybusinessbusinessinformation/v1/model/TimeOfDay.java

Lines changed: 24 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -33,47 +33,51 @@
3333
public 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) {

clients/google-api-services-mybusinessbusinessinformation/v1/2.0.0/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
<groupId>com.google.apis</groupId>
1010
<artifactId>google-api-services-mybusinessbusinessinformation</artifactId>
11-
<version>v1-rev20231127-2.0.0</version>
12-
<name>My Business Business Information API v1-rev20231127-2.0.0</name>
11+
<version>v1-rev20241002-2.0.0</version>
12+
<name>My Business Business Information API v1-rev20241002-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-mybusinessbusinessinformation/v1/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-mybusinessbusinessinformation</artifactId>
25-
<version>v1-rev20231127-2.0.0</version>
25+
<version>v1-rev20241002-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-mybusinessbusinessinformation:v1-rev20231127-2.0.0'
38+
implementation 'com.google.apis:google-api-services-mybusinessbusinessinformation:v1-rev20241002-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)