Skip to content

Commit adc6aee

Browse files
1 parent c44d531 commit adc6aee

File tree

6 files changed

+135
-6
lines changed

6 files changed

+135
-6
lines changed

clients/google-api-services-manufacturers/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-manufacturers</artifactId>
25-
<version>v1-rev20240716-2.0.0</version>
25+
<version>v1-rev20240809-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-manufacturers:v1-rev20240716-2.0.0'
38+
implementation 'com.google.apis:google-api-services-manufacturers:v1-rev20240809-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-manufacturers/v1/2.0.0/com/google/api/services/manufacturers/v1/model/Attributes.java

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -176,6 +176,16 @@ public final class Attributes extends com.google.api.client.json.GenericJson {
176176
@com.google.api.client.util.Key
177177
private java.util.List<java.lang.String> includedDestination;
178178

179+
/**
180+
* Optional. List of countries to show this product in. Countries provided in this attribute will
181+
* override any of the countries configured at feed level. The values should be: the [CLDR
182+
* territory code](http://www.unicode.org/repos/cldr/tags/latest/common/main/en.xml) of the
183+
* countries in which this item will be shown.
184+
* The value may be {@code null}.
185+
*/
186+
@com.google.api.client.util.Key
187+
private java.util.List<java.lang.String> intendedCountry;
188+
179189
/**
180190
* The item group id of the product. For more information, see
181191
* https://support.google.com/manufacturers/answer/6124116#itemgroupid.
@@ -703,6 +713,29 @@ public Attributes setIncludedDestination(java.util.List<java.lang.String> includ
703713
return this;
704714
}
705715

716+
/**
717+
* Optional. List of countries to show this product in. Countries provided in this attribute will
718+
* override any of the countries configured at feed level. The values should be: the [CLDR
719+
* territory code](http://www.unicode.org/repos/cldr/tags/latest/common/main/en.xml) of the
720+
* countries in which this item will be shown.
721+
* @return value or {@code null} for none
722+
*/
723+
public java.util.List<java.lang.String> getIntendedCountry() {
724+
return intendedCountry;
725+
}
726+
727+
/**
728+
* Optional. List of countries to show this product in. Countries provided in this attribute will
729+
* override any of the countries configured at feed level. The values should be: the [CLDR
730+
* territory code](http://www.unicode.org/repos/cldr/tags/latest/common/main/en.xml) of the
731+
* countries in which this item will be shown.
732+
* @param intendedCountry intendedCountry or {@code null} for none
733+
*/
734+
public Attributes setIntendedCountry(java.util.List<java.lang.String> intendedCountry) {
735+
this.intendedCountry = intendedCountry;
736+
return this;
737+
}
738+
706739
/**
707740
* The item group id of the product. For more information, see
708741
* https://support.google.com/manufacturers/answer/6124116#itemgroupid.

clients/google-api-services-manufacturers/v1/2.0.0/com/google/api/services/manufacturers/v1/model/DestinationStatus.java

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,20 +30,58 @@
3030
@SuppressWarnings("javadoc")
3131
public final class DestinationStatus extends com.google.api.client.json.GenericJson {
3232

33+
/**
34+
* Output only. List of country codes (ISO 3166-1 alpha-2) where the offer is approved.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.util.List<java.lang.String> approvedCountries;
39+
3340
/**
3441
* The name of the destination.
3542
* The value may be {@code null}.
3643
*/
3744
@com.google.api.client.util.Key
3845
private java.lang.String destination;
3946

47+
/**
48+
* Output only. List of country codes (ISO 3166-1 alpha-2) where the offer is disapproved.
49+
* The value may be {@code null}.
50+
*/
51+
@com.google.api.client.util.Key
52+
private java.util.List<java.lang.String> disapprovedCountries;
53+
54+
/**
55+
* Output only. List of country codes (ISO 3166-1 alpha-2) where the offer is pending approval.
56+
* The value may be {@code null}.
57+
*/
58+
@com.google.api.client.util.Key
59+
private java.util.List<java.lang.String> pendingCountries;
60+
4061
/**
4162
* The status of the destination.
4263
* The value may be {@code null}.
4364
*/
4465
@com.google.api.client.util.Key
4566
private java.lang.String status;
4667

68+
/**
69+
* Output only. List of country codes (ISO 3166-1 alpha-2) where the offer is approved.
70+
* @return value or {@code null} for none
71+
*/
72+
public java.util.List<java.lang.String> getApprovedCountries() {
73+
return approvedCountries;
74+
}
75+
76+
/**
77+
* Output only. List of country codes (ISO 3166-1 alpha-2) where the offer is approved.
78+
* @param approvedCountries approvedCountries or {@code null} for none
79+
*/
80+
public DestinationStatus setApprovedCountries(java.util.List<java.lang.String> approvedCountries) {
81+
this.approvedCountries = approvedCountries;
82+
return this;
83+
}
84+
4785
/**
4886
* The name of the destination.
4987
* @return value or {@code null} for none
@@ -61,6 +99,40 @@ public DestinationStatus setDestination(java.lang.String destination) {
6199
return this;
62100
}
63101

102+
/**
103+
* Output only. List of country codes (ISO 3166-1 alpha-2) where the offer is disapproved.
104+
* @return value or {@code null} for none
105+
*/
106+
public java.util.List<java.lang.String> getDisapprovedCountries() {
107+
return disapprovedCountries;
108+
}
109+
110+
/**
111+
* Output only. List of country codes (ISO 3166-1 alpha-2) where the offer is disapproved.
112+
* @param disapprovedCountries disapprovedCountries or {@code null} for none
113+
*/
114+
public DestinationStatus setDisapprovedCountries(java.util.List<java.lang.String> disapprovedCountries) {
115+
this.disapprovedCountries = disapprovedCountries;
116+
return this;
117+
}
118+
119+
/**
120+
* Output only. List of country codes (ISO 3166-1 alpha-2) where the offer is pending approval.
121+
* @return value or {@code null} for none
122+
*/
123+
public java.util.List<java.lang.String> getPendingCountries() {
124+
return pendingCountries;
125+
}
126+
127+
/**
128+
* Output only. List of country codes (ISO 3166-1 alpha-2) where the offer is pending approval.
129+
* @param pendingCountries pendingCountries or {@code null} for none
130+
*/
131+
public DestinationStatus setPendingCountries(java.util.List<java.lang.String> pendingCountries) {
132+
this.pendingCountries = pendingCountries;
133+
return this;
134+
}
135+
64136
/**
65137
* The status of the destination.
66138
* @return value or {@code null} for none

clients/google-api-services-manufacturers/v1/2.0.0/com/google/api/services/manufacturers/v1/model/Product.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,13 @@ public final class Product extends com.google.api.client.json.GenericJson {
5858
com.google.api.client.util.Data.nullOf(DestinationStatus.class);
5959
}
6060

61+
/**
62+
* Optional. The feed label for the product.
63+
* The value may be {@code null}.
64+
*/
65+
@com.google.api.client.util.Key
66+
private java.lang.String feedLabel;
67+
6168
/**
6269
* A server-generated list of issues associated with the product.
6370
* The value may be {@code null}.
@@ -158,6 +165,23 @@ public Product setDestinationStatuses(java.util.List<DestinationStatus> destinat
158165
return this;
159166
}
160167

168+
/**
169+
* Optional. The feed label for the product.
170+
* @return value or {@code null} for none
171+
*/
172+
public java.lang.String getFeedLabel() {
173+
return feedLabel;
174+
}
175+
176+
/**
177+
* Optional. The feed label for the product.
178+
* @param feedLabel feedLabel or {@code null} for none
179+
*/
180+
public Product setFeedLabel(java.lang.String feedLabel) {
181+
this.feedLabel = feedLabel;
182+
return this;
183+
}
184+
161185
/**
162186
* A server-generated list of issues associated with the product.
163187
* @return value or {@code null} for none

clients/google-api-services-manufacturers/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-manufacturers</artifactId>
11-
<version>v1-rev20240716-2.0.0</version>
12-
<name>Manufacturer Center API v1-rev20240716-2.0.0</name>
11+
<version>v1-rev20240809-2.0.0</version>
12+
<name>Manufacturer Center API v1-rev20240809-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-manufacturers/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-manufacturers</artifactId>
25-
<version>v1-rev20240716-2.0.0</version>
25+
<version>v1-rev20240809-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-manufacturers:v1-rev20240716-2.0.0'
38+
implementation 'com.google.apis:google-api-services-manufacturers:v1-rev20240809-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)