Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-mybusinessbusinessinformation</artifactId>
<version>v1-rev20260726-2.0.0</version>
<version>v1-rev20260804-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-mybusinessbusinessinformation:v1-rev20260726-2.0.0'
implementation 'com.google.apis:google-api-services-mybusinessbusinessinformation:v1-rev20260804-2.0.0'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ public final class TimePeriod extends com.google.api.client.json.GenericJson {

/**
* Required. Valid values are 00:00-24:00, where 24:00 represents midnight at the end of the
* specified day field.
* specified day field. Note: In Proto3 JSON mapping, default zero values (00:00) are omitted,
* producing `{}` for close_time.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
Expand All @@ -56,7 +57,8 @@ public final class TimePeriod extends com.google.api.client.json.GenericJson {

/**
* Required. Valid values are 00:00-24:00, where 24:00 represents midnight at the end of the
* specified day field.
* specified day field. Note: In Proto3 JSON mapping, default zero values (00:00) are omitted,
* producing `{}` for open_time.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
Expand All @@ -81,7 +83,8 @@ public TimePeriod setCloseDay(java.lang.String closeDay) {

/**
* Required. Valid values are 00:00-24:00, where 24:00 represents midnight at the end of the
* specified day field.
* specified day field. Note: In Proto3 JSON mapping, default zero values (00:00) are omitted,
* producing `{}` for close_time.
* @return value or {@code null} for none
*/
public TimeOfDay getCloseTime() {
Expand All @@ -90,7 +93,8 @@ public TimeOfDay getCloseTime() {

/**
* Required. Valid values are 00:00-24:00, where 24:00 represents midnight at the end of the
* specified day field.
* specified day field. Note: In Proto3 JSON mapping, default zero values (00:00) are omitted,
* producing `{}` for close_time.
* @param closeTime closeTime or {@code null} for none
*/
public TimePeriod setCloseTime(TimeOfDay closeTime) {
Expand All @@ -117,7 +121,8 @@ public TimePeriod setOpenDay(java.lang.String openDay) {

/**
* Required. Valid values are 00:00-24:00, where 24:00 represents midnight at the end of the
* specified day field.
* specified day field. Note: In Proto3 JSON mapping, default zero values (00:00) are omitted,
* producing `{}` for open_time.
* @return value or {@code null} for none
*/
public TimeOfDay getOpenTime() {
Expand All @@ -126,7 +131,8 @@ public TimeOfDay getOpenTime() {

/**
* Required. Valid values are 00:00-24:00, where 24:00 represents midnight at the end of the
* specified day field.
* specified day field. Note: In Proto3 JSON mapping, default zero values (00:00) are omitted,
* producing `{}` for open_time.
* @param openTime openTime or {@code null} for none
*/
public TimePeriod setOpenTime(TimeOfDay openTime) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

<groupId>com.google.apis</groupId>
<artifactId>google-api-services-mybusinessbusinessinformation</artifactId>
<version>v1-rev20260726-2.0.0</version>
<name>My Business Business Information API v1-rev20260726-2.0.0</name>
<version>v1-rev20260804-2.0.0</version>
<name>My Business Business Information API v1-rev20260804-2.0.0</name>
<packaging>jar</packaging>

<inceptionYear>2011</inceptionYear>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-mybusinessbusinessinformation</artifactId>
<version>v1-rev20260726-2.0.0</version>
<version>v1-rev20260804-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-mybusinessbusinessinformation:v1-rev20260726-2.0.0'
implementation 'com.google.apis:google-api-services-mybusinessbusinessinformation:v1-rev20260804-2.0.0'
}
```

Expand Down
Loading