Skip to content
Open
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-merchantapi</artifactId>
<version>accounts_v1-rev20251120-2.0.0</version>
<version>accounts_v1-rev20260206-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-merchantapi:accounts_v1-rev20251120-2.0.0'
implementation 'com.google.apis:google-api-services-merchantapi:accounts_v1-rev20260206-2.0.0'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ public class Merchant extends com.google.api.client.googleapis.services.json.Abs
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}</li>
* <li>Android: {@code newCompatibleTransport} from
* {@code com.google.api.client.extensions.android.http.AndroidHttp}</li>
* <li>Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
* <li>Java: {@code com.google.api.client.http.javanet.NetHttpTransport}</li>
* </li>
* </ul>
* @param jsonFactory JSON factory, which may be:
Expand Down Expand Up @@ -12353,8 +12353,7 @@ private static String chooseEndpoint(com.google.api.client.http.HttpTransport tr
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}</li>
* <li>Android: {@code newCompatibleTransport} from
* {@code com.google.api.client.extensions.android.http.AndroidHttp}</li>
* <li>Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
* </li>
* <li>Java: {@code com.google.api.client.http.javanet.NetHttpTransport}</li>
* </ul>
* @param jsonFactory JSON factory, which may be:
* <ul>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public final class CreateAndConfigureAccountRequest extends com.google.api.clien
* initialized as part of the creation. At least one such service needs to be provided. Currently
* exactly one of these needs to be `account_aggregation` and `accounts.createAndConfigure` method
* can be used to create a sub-account under an existing advanced account through this method.
* Additional `account_management` or `product_management` services may be provided.
* Additional `account_management` or `products_management` services may be provided.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
Expand Down Expand Up @@ -96,7 +96,7 @@ public CreateAndConfigureAccountRequest setAccount(Account account) {
* initialized as part of the creation. At least one such service needs to be provided. Currently
* exactly one of these needs to be `account_aggregation` and `accounts.createAndConfigure` method
* can be used to create a sub-account under an existing advanced account through this method.
* Additional `account_management` or `product_management` services may be provided.
* Additional `account_management` or `products_management` services may be provided.
* @return value or {@code null} for none
*/
public java.util.List<AddAccountService> getService() {
Expand All @@ -108,7 +108,7 @@ public java.util.List<AddAccountService> getService() {
* initialized as part of the creation. At least one such service needs to be provided. Currently
* exactly one of these needs to be `account_aggregation` and `accounts.createAndConfigure` method
* can be used to create a sub-account under an existing advanced account through this method.
* Additional `account_management` or `product_management` services may be provided.
* Additional `account_management` or `products_management` services may be provided.
* @param service service or {@code null} for none
*/
public CreateAndConfigureAccountRequest setService(java.util.List<AddAccountService> service) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,11 @@

/**
* Represents a geographic region that you can use as a target with both the `RegionalInventory` and
* `ShippingSettings` services. You can define regions as collections of either postal codes or, in
* some countries, using predefined geotargets. For more information, see [Set up regions
* ](https://support.google.com/merchants/answer/7410946#zippy=%2Ccreate-a-new-region) for more
* information.
* `ShippingSettings` services. You can define regions as collections of either postal codes, radius
* areas or, in some countries, using predefined geotargets. A region must be defined by specifying
* exactly one of `postal_code_area`, `geotarget_area`, or `radius_area`. For more information, see
* [Set up regions ](https://support.google.com/merchants/answer/7410946#zippy=%2Ccreate-a-new-
* region) for more information.
*
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
* transmitted over HTTP when working with the Merchant API. For a detailed explanation see:
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-merchantapi</artifactId>
<version>accounts_v1-rev20251120-2.0.0</version>
<name>Merchant API accounts_v1-rev20251120-2.0.0</name>
<version>accounts_v1-rev20260206-2.0.0</version>
<name>Merchant API accounts_v1-rev20260206-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-merchantapi</artifactId>
<version>accounts_v1-rev20251120-2.0.0</version>
<version>accounts_v1-rev20260206-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-merchantapi:accounts_v1-rev20251120-2.0.0'
implementation 'com.google.apis:google-api-services-merchantapi:accounts_v1-rev20260206-2.0.0'
}
```

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-merchantapi</artifactId>
<version>accounts_v1beta-rev20251120-2.0.0</version>
<version>accounts_v1beta-rev20260206-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-merchantapi:accounts_v1beta-rev20251120-2.0.0'
implementation 'com.google.apis:google-api-services-merchantapi:accounts_v1beta-rev20260206-2.0.0'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ public class Merchant extends com.google.api.client.googleapis.services.json.Abs
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}</li>
* <li>Android: {@code newCompatibleTransport} from
* {@code com.google.api.client.extensions.android.http.AndroidHttp}</li>
* <li>Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
* <li>Java: {@code com.google.api.client.http.javanet.NetHttpTransport}</li>
* </li>
* </ul>
* @param jsonFactory JSON factory, which may be:
Expand Down Expand Up @@ -12105,8 +12105,7 @@ private static String chooseEndpoint(com.google.api.client.http.HttpTransport tr
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}</li>
* <li>Android: {@code newCompatibleTransport} from
* {@code com.google.api.client.extensions.android.http.AndroidHttp}</li>
* <li>Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
* </li>
* <li>Java: {@code com.google.api.client.http.javanet.NetHttpTransport}</li>
* </ul>
* @param jsonFactory JSON factory, which may be:
* <ul>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public final class CreateAndConfigureAccountRequest extends com.google.api.clien
* initialized as part of the creation. At least one such service needs to be provided. Currently
* exactly one of these needs to be `account_aggregation` and `accounts.createAndConfigure` method
* can be used to create a sub-account under an existing advanced account through this method.
* Additional `account_management` or `product_management` services may be provided.
* Additional `account_management` or `products_management` services may be provided.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
Expand Down Expand Up @@ -104,7 +104,7 @@ public CreateAndConfigureAccountRequest setAccount(Account account) {
* initialized as part of the creation. At least one such service needs to be provided. Currently
* exactly one of these needs to be `account_aggregation` and `accounts.createAndConfigure` method
* can be used to create a sub-account under an existing advanced account through this method.
* Additional `account_management` or `product_management` services may be provided.
* Additional `account_management` or `products_management` services may be provided.
* @return value or {@code null} for none
*/
public java.util.List<AddAccountService> getService() {
Expand All @@ -116,7 +116,7 @@ public java.util.List<AddAccountService> getService() {
* initialized as part of the creation. At least one such service needs to be provided. Currently
* exactly one of these needs to be `account_aggregation` and `accounts.createAndConfigure` method
* can be used to create a sub-account under an existing advanced account through this method.
* Additional `account_management` or `product_management` services may be provided.
* Additional `account_management` or `products_management` services may be provided.
* @param service service or {@code null} for none
*/
public CreateAndConfigureAccountRequest setService(java.util.List<AddAccountService> service) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,11 @@

/**
* Represents a geographic region that you can use as a target with both the `RegionalInventory` and
* `ShippingSettings` services. You can define regions as collections of either postal codes or, in
* some countries, using predefined geotargets. For more information, see [Set up regions
* ](https://support.google.com/merchants/answer/7410946#zippy=%2Ccreate-a-new-region) for more
* information.
* `ShippingSettings` services. You can define regions as collections of either postal codes, radius
* areas or, in some countries, using predefined geotargets. A region must be defined by specifying
* exactly one of `postal_code_area`, `geotarget_area`, or `radius_area`. For more information, see
* [Set up regions ](https://support.google.com/merchants/answer/7410946#zippy=%2Ccreate-a-new-
* region) for more information.
*
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
* transmitted over HTTP when working with the Merchant API. For a detailed explanation see:
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-merchantapi</artifactId>
<version>accounts_v1beta-rev20251120-2.0.0</version>
<name>Merchant API accounts_v1beta-rev20251120-2.0.0</name>
<version>accounts_v1beta-rev20260206-2.0.0</version>
<name>Merchant API accounts_v1beta-rev20260206-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-merchantapi</artifactId>
<version>accounts_v1beta-rev20251120-2.0.0</version>
<version>accounts_v1beta-rev20260206-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-merchantapi:accounts_v1beta-rev20251120-2.0.0'
implementation 'com.google.apis:google-api-services-merchantapi:accounts_v1beta-rev20260206-2.0.0'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ public class Merchant extends com.google.api.client.googleapis.services.json.Abs
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}</li>
* <li>Android: {@code newCompatibleTransport} from
* {@code com.google.api.client.extensions.android.http.AndroidHttp}</li>
* <li>Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
* <li>Java: {@code com.google.api.client.http.javanet.NetHttpTransport}</li>
* </li>
* </ul>
* @param jsonFactory JSON factory, which may be:
Expand Down Expand Up @@ -1171,8 +1171,7 @@ private static String chooseEndpoint(com.google.api.client.http.HttpTransport tr
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}</li>
* <li>Android: {@code newCompatibleTransport} from
* {@code com.google.api.client.extensions.android.http.AndroidHttp}</li>
* <li>Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
* </li>
* <li>Java: {@code com.google.api.client.http.javanet.NetHttpTransport}</li>
* </ul>
* @param jsonFactory JSON factory, which may be:
* <ul>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ public class Merchant extends com.google.api.client.googleapis.services.json.Abs
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}</li>
* <li>Android: {@code newCompatibleTransport} from
* {@code com.google.api.client.extensions.android.http.AndroidHttp}</li>
* <li>Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
* <li>Java: {@code com.google.api.client.http.javanet.NetHttpTransport}</li>
* </li>
* </ul>
* @param jsonFactory JSON factory, which may be:
Expand Down Expand Up @@ -1171,8 +1171,7 @@ private static String chooseEndpoint(com.google.api.client.http.HttpTransport tr
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}</li>
* <li>Android: {@code newCompatibleTransport} from
* {@code com.google.api.client.extensions.android.http.AndroidHttp}</li>
* <li>Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
* </li>
* <li>Java: {@code com.google.api.client.http.javanet.NetHttpTransport}</li>
* </ul>
* @param jsonFactory JSON factory, which may be:
* <ul>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ public class Merchant extends com.google.api.client.googleapis.services.json.Abs
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}</li>
* <li>Android: {@code newCompatibleTransport} from
* {@code com.google.api.client.extensions.android.http.AndroidHttp}</li>
* <li>Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
* <li>Java: {@code com.google.api.client.http.javanet.NetHttpTransport}</li>
* </li>
* </ul>
* @param jsonFactory JSON factory, which may be:
Expand Down Expand Up @@ -1311,8 +1311,7 @@ private static String chooseEndpoint(com.google.api.client.http.HttpTransport tr
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}</li>
* <li>Android: {@code newCompatibleTransport} from
* {@code com.google.api.client.extensions.android.http.AndroidHttp}</li>
* <li>Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
* </li>
* <li>Java: {@code com.google.api.client.http.javanet.NetHttpTransport}</li>
* </ul>
* @param jsonFactory JSON factory, which may be:
* <ul>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ public class Merchant extends com.google.api.client.googleapis.services.json.Abs
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}</li>
* <li>Android: {@code newCompatibleTransport} from
* {@code com.google.api.client.extensions.android.http.AndroidHttp}</li>
* <li>Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
* <li>Java: {@code com.google.api.client.http.javanet.NetHttpTransport}</li>
* </li>
* </ul>
* @param jsonFactory JSON factory, which may be:
Expand Down Expand Up @@ -1311,8 +1311,7 @@ private static String chooseEndpoint(com.google.api.client.http.HttpTransport tr
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}</li>
* <li>Android: {@code newCompatibleTransport} from
* {@code com.google.api.client.extensions.android.http.AndroidHttp}</li>
* <li>Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
* </li>
* <li>Java: {@code com.google.api.client.http.javanet.NetHttpTransport}</li>
* </ul>
* @param jsonFactory JSON factory, which may be:
* <ul>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ public class Merchant extends com.google.api.client.googleapis.services.json.Abs
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}</li>
* <li>Android: {@code newCompatibleTransport} from
* {@code com.google.api.client.extensions.android.http.AndroidHttp}</li>
* <li>Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
* <li>Java: {@code com.google.api.client.http.javanet.NetHttpTransport}</li>
* </li>
* </ul>
* @param jsonFactory JSON factory, which may be:
Expand Down Expand Up @@ -1887,8 +1887,7 @@ private static String chooseEndpoint(com.google.api.client.http.HttpTransport tr
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}</li>
* <li>Android: {@code newCompatibleTransport} from
* {@code com.google.api.client.extensions.android.http.AndroidHttp}</li>
* <li>Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
* </li>
* <li>Java: {@code com.google.api.client.http.javanet.NetHttpTransport}</li>
* </ul>
* @param jsonFactory JSON factory, which may be:
* <ul>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ public class Merchant extends com.google.api.client.googleapis.services.json.Abs
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}</li>
* <li>Android: {@code newCompatibleTransport} from
* {@code com.google.api.client.extensions.android.http.AndroidHttp}</li>
* <li>Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
* <li>Java: {@code com.google.api.client.http.javanet.NetHttpTransport}</li>
* </li>
* </ul>
* @param jsonFactory JSON factory, which may be:
Expand Down Expand Up @@ -1887,8 +1887,7 @@ private static String chooseEndpoint(com.google.api.client.http.HttpTransport tr
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}</li>
* <li>Android: {@code newCompatibleTransport} from
* {@code com.google.api.client.extensions.android.http.AndroidHttp}</li>
* <li>Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
* </li>
* <li>Java: {@code com.google.api.client.http.javanet.NetHttpTransport}</li>
* </ul>
* @param jsonFactory JSON factory, which may be:
* <ul>
Expand Down
Loading