Skip to content

Commit f4910c1

Browse files
1 parent f449360 commit f4910c1

File tree

19 files changed

+68
-36
lines changed

19 files changed

+68
-36
lines changed

clients/google-api-services-merchantapi/accounts_v1beta/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-merchantapi</artifactId>
25-
<version>accounts_v1beta-rev20241023-2.0.0</version>
25+
<version>accounts_v1beta-rev20241029-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-merchantapi:accounts_v1beta-rev20241023-2.0.0'
38+
implementation 'com.google.apis:google-api-services-merchantapi:accounts_v1beta-rev20241029-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-merchantapi/accounts_v1beta/2.0.0/com/google/api/services/merchantapi/accounts_v1beta/model/Account.java

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,13 @@
1717
package com.google.api.services.merchantapi.accounts_v1beta.model;
1818

1919
/**
20-
* An account.
20+
* The `Account` message represents a merchant's account within Shopping Ads. It's the primary
21+
* entity for managing product data, settings, and interactions with Google's services and external
22+
* providers. Accounts can operate as standalone entities or be part of a multi-client account (MCA)
23+
* structure. In an MCA setup the parent account manages multiple sub-accounts. Establishing an
24+
* account involves configuring attributes like the account name, time zone, and language
25+
* preferences. The `Account` message is the parent entity for many other resources, for example,
26+
* `AccountRelationship`, `Homepage`, `BusinessInfo` and so on.
2127
*
2228
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2329
* transmitted over HTTP when working with the Merchant API. For a detailed explanation see:

clients/google-api-services-merchantapi/accounts_v1beta/2.0.0/com/google/api/services/merchantapi/accounts_v1beta/model/BusinessInfo.java

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@
1717
package com.google.api.services.merchantapi.accounts_v1beta.model;
1818

1919
/**
20-
* Collection of information related to a business.
20+
* The `BusinessInfo` message contains essential information about a merchant's business. This
21+
* message captures key business details such as physical address, customer service contacts, and
22+
* region-specific identifiers.
2123
*
2224
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2325
* transmitted over HTTP when working with the Merchant API. For a detailed explanation see:
@@ -30,7 +32,8 @@
3032
public final class BusinessInfo extends com.google.api.client.json.GenericJson {
3133

3234
/**
33-
* Optional. The address of the business.
35+
* Optional. The address of the business. Only `region_code`, `address_lines`, `postal_code`,
36+
* `administrative_area` and `locality` fields are supported. All other fields are ignored.
3437
* The value may be {@code null}.
3538
*/
3639
@com.google.api.client.util.Key
@@ -74,15 +77,17 @@ public final class BusinessInfo extends com.google.api.client.json.GenericJson {
7477
private java.lang.String phoneVerificationState;
7578

7679
/**
77-
* Optional. The address of the business.
80+
* Optional. The address of the business. Only `region_code`, `address_lines`, `postal_code`,
81+
* `administrative_area` and `locality` fields are supported. All other fields are ignored.
7882
* @return value or {@code null} for none
7983
*/
8084
public PostalAddress getAddress() {
8185
return address;
8286
}
8387

8488
/**
85-
* Optional. The address of the business.
89+
* Optional. The address of the business. Only `region_code`, `address_lines`, `postal_code`,
90+
* `administrative_area` and `locality` fields are supported. All other fields are ignored.
8691
* @param address address or {@code null} for none
8792
*/
8893
public BusinessInfo setAddress(PostalAddress address) {

clients/google-api-services-merchantapi/accounts_v1beta/2.0.0/com/google/api/services/merchantapi/accounts_v1beta/model/CarrierRate.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,10 @@
1717
package com.google.api.services.merchantapi.accounts_v1beta.model;
1818

1919
/**
20-
* A list of carrier rates that can be referred to by `main_table` or `single_value`.
20+
* A list of carrier rates that can be referred to by `main_table` or `single_value`. Supported
21+
* carrier services are defined in https://support.google.com/merchants/answer/12577710?hl=en&ref_to
22+
* pic=12570808&sjid=10662598224319463032-NC#zippy=%2Cdelivery-cost-rate-type%2Ccarrier-rate-au-de-
23+
* uk-and-us-only.
2124
*
2225
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2326
* transmitted over HTTP when working with the Merchant API. For a detailed explanation see:

clients/google-api-services-merchantapi/accounts_v1beta/2.0.0/com/google/api/services/merchantapi/accounts_v1beta/model/Homepage.java

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,11 @@
1717
package com.google.api.services.merchantapi.accounts_v1beta.model;
1818

1919
/**
20-
* A store's homepage.
20+
* The `Homepage` message represents a merchant's store homepage within the system. A merchant's
21+
* homepage is the primary domain where customers interact with their store. The homepage can be
22+
* claimed and verified as a proof of ownership and allows the merchant to unlock features that
23+
* require a verified website. For more information, see [Understanding online store URL
24+
* verification](//support.google.com/merchants/answer/176793).
2125
*
2226
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2327
* transmitted over HTTP when working with the Merchant API. For a detailed explanation see:

clients/google-api-services-merchantapi/accounts_v1beta/2.0.0/com/google/api/services/merchantapi/accounts_v1beta/model/TermsOfService.java

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,12 @@
1717
package com.google.api.services.merchantapi.accounts_v1beta.model;
1818

1919
/**
20-
* A `TermsOfService`.
20+
* The `TermsOfService` message represents a specific version of the terms of service that merchants
21+
* must accept to access certain features or services (see
22+
* https://support.google.com/merchants/answer/160173). This message is important for the onboarding
23+
* process, ensuring that merchants agree to the necessary legal agreements for using the service.
24+
* Merchants can retrieve the latest terms of service for a given `kind` and `region` through
25+
* `RetrieveLatestTermsOfService`, and accept them as required through `AcceptTermsOfService`.
2126
*
2227
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2328
* transmitted over HTTP when working with the Merchant API. For a detailed explanation see:

clients/google-api-services-merchantapi/accounts_v1beta/2.0.0/com/google/api/services/merchantapi/accounts_v1beta/model/User.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,10 @@
1717
package com.google.api.services.merchantapi.accounts_v1beta.model;
1818

1919
/**
20-
* A [user](https://support.google.com/merchants/answer/12160472).
20+
* The `User` message represents a user associated with a Merchant Center account. It is used to
21+
* manage user permissions and access rights within the account. For more information, see
22+
* [Frequently asked questions about people and access
23+
* levels](//support.google.com/merchants/answer/12160472).
2124
*
2225
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2326
* transmitted over HTTP when working with the Merchant API. For a detailed explanation see:

clients/google-api-services-merchantapi/accounts_v1beta/2.0.0/com/google/api/services/merchantapi/accounts_v1beta/model/WarehouseBasedDeliveryTime.java

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,9 @@
3232
public final class WarehouseBasedDeliveryTime extends com.google.api.client.json.GenericJson {
3333

3434
/**
35-
* Required. Carrier, such as `"UPS"` or `"Fedex"`.
35+
* Required. Carrier, such as `"UPS"` or `"Fedex"`. [supported
36+
* carriers](https://support.google.com/merchants/answer/7050921#zippy=%2Ccarrier-rates-au-de-uk-
37+
* and-us-only)
3638
* The value may be {@code null}.
3739
*/
3840
@com.google.api.client.util.Key
@@ -54,15 +56,19 @@ public final class WarehouseBasedDeliveryTime extends com.google.api.client.json
5456
private java.lang.String warehouse;
5557

5658
/**
57-
* Required. Carrier, such as `"UPS"` or `"Fedex"`.
59+
* Required. Carrier, such as `"UPS"` or `"Fedex"`. [supported
60+
* carriers](https://support.google.com/merchants/answer/7050921#zippy=%2Ccarrier-rates-au-de-uk-
61+
* and-us-only)
5862
* @return value or {@code null} for none
5963
*/
6064
public java.lang.String getCarrier() {
6165
return carrier;
6266
}
6367

6468
/**
65-
* Required. Carrier, such as `"UPS"` or `"Fedex"`.
69+
* Required. Carrier, such as `"UPS"` or `"Fedex"`. [supported
70+
* carriers](https://support.google.com/merchants/answer/7050921#zippy=%2Ccarrier-rates-au-de-uk-
71+
* and-us-only)
6672
* @param carrier carrier or {@code null} for none
6773
*/
6874
public WarehouseBasedDeliveryTime setCarrier(java.lang.String carrier) {

clients/google-api-services-merchantapi/accounts_v1beta/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-merchantapi</artifactId>
11-
<version>accounts_v1beta-rev20241023-2.0.0</version>
12-
<name>Merchant API accounts_v1beta-rev20241023-2.0.0</name>
11+
<version>accounts_v1beta-rev20241029-2.0.0</version>
12+
<name>Merchant API accounts_v1beta-rev20241029-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-merchantapi/accounts_v1beta/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-merchantapi</artifactId>
25-
<version>accounts_v1beta-rev20241023-2.0.0</version>
25+
<version>accounts_v1beta-rev20241029-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-merchantapi:accounts_v1beta-rev20241023-2.0.0'
38+
implementation 'com.google.apis:google-api-services-merchantapi:accounts_v1beta-rev20241029-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)