Skip to content

Commit be53473

Browse files
1 parent 0c7be6b commit be53473

File tree

16 files changed

+81
-57
lines changed

16 files changed

+81
-57
lines changed

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

clients/google-api-services-merchantapi/ordertracking_v1/2.0.0/com/google/api/services/merchantapi/ordertracking_v1/model/LineItemDetails.java

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,11 @@ public final class LineItemDetails extends com.google.api.client.json.GenericJso
3737
private java.lang.String brand;
3838

3939
/**
40-
* Optional. The Global Trade Item Number.
40+
* Optional. The Global Trade Item Numbers.
4141
* The value may be {@code null}.
4242
*/
4343
@com.google.api.client.util.Key
44-
private java.lang.String gtin;
44+
private java.util.List<java.lang.String> gtins;
4545

4646
/**
4747
* Required. The ID for this line item.
@@ -97,19 +97,19 @@ public LineItemDetails setBrand(java.lang.String brand) {
9797
}
9898

9999
/**
100-
* Optional. The Global Trade Item Number.
100+
* Optional. The Global Trade Item Numbers.
101101
* @return value or {@code null} for none
102102
*/
103-
public java.lang.String getGtin() {
104-
return gtin;
103+
public java.util.List<java.lang.String> getGtins() {
104+
return gtins;
105105
}
106106

107107
/**
108-
* Optional. The Global Trade Item Number.
109-
* @param gtin gtin or {@code null} for none
108+
* Optional. The Global Trade Item Numbers.
109+
* @param gtins gtins or {@code null} for none
110110
*/
111-
public LineItemDetails setGtin(java.lang.String gtin) {
112-
this.gtin = gtin;
111+
public LineItemDetails setGtins(java.util.List<java.lang.String> gtins) {
112+
this.gtins = gtins;
113113
return this;
114114
}
115115

clients/google-api-services-merchantapi/ordertracking_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-merchantapi</artifactId>
11-
<version>ordertracking_v1-rev20250804-2.0.0</version>
12-
<name>Merchant API ordertracking_v1-rev20250804-2.0.0</name>
11+
<version>ordertracking_v1-rev20250805-2.0.0</version>
12+
<name>Merchant API ordertracking_v1-rev20250805-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

clients/google-api-services-merchantapi/ordertracking_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>ordertracking_v1beta-rev20250727-2.0.0</version>
25+
<version>ordertracking_v1beta-rev20250805-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:ordertracking_v1beta-rev20250727-2.0.0'
38+
implementation 'com.google.apis:google-api-services-merchantapi:ordertracking_v1beta-rev20250805-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-merchantapi/ordertracking_v1beta/2.0.0/com/google/api/services/merchantapi/ordertracking_v1beta/model/LineItemDetails.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,13 @@ public final class LineItemDetails extends com.google.api.client.json.GenericJso
4343
@com.google.api.client.util.Key
4444
private java.lang.String gtin;
4545

46+
/**
47+
* Optional. The Global Trade Item Numbers.
48+
* The value may be {@code null}.
49+
*/
50+
@com.google.api.client.util.Key
51+
private java.util.List<java.lang.String> gtins;
52+
4653
/**
4754
* Required. The ID for this line item.
4855
* The value may be {@code null}.
@@ -113,6 +120,23 @@ public LineItemDetails setGtin(java.lang.String gtin) {
113120
return this;
114121
}
115122

123+
/**
124+
* Optional. The Global Trade Item Numbers.
125+
* @return value or {@code null} for none
126+
*/
127+
public java.util.List<java.lang.String> getGtins() {
128+
return gtins;
129+
}
130+
131+
/**
132+
* Optional. The Global Trade Item Numbers.
133+
* @param gtins gtins or {@code null} for none
134+
*/
135+
public LineItemDetails setGtins(java.util.List<java.lang.String> gtins) {
136+
this.gtins = gtins;
137+
return this;
138+
}
139+
116140
/**
117141
* Required. The ID for this line item.
118142
* @return value or {@code null} for none

clients/google-api-services-merchantapi/ordertracking_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>ordertracking_v1beta-rev20250727-2.0.0</version>
12-
<name>Merchant API ordertracking_v1beta-rev20250727-2.0.0</name>
11+
<version>ordertracking_v1beta-rev20250805-2.0.0</version>
12+
<name>Merchant API ordertracking_v1beta-rev20250805-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-merchantapi/ordertracking_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>ordertracking_v1beta-rev20250727-2.0.0</version>
25+
<version>ordertracking_v1beta-rev20250805-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:ordertracking_v1beta-rev20250727-2.0.0'
38+
implementation 'com.google.apis:google-api-services-merchantapi:ordertracking_v1beta-rev20250805-2.0.0'
3939
}
4040
```
4141

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

clients/google-api-services-merchantapi/promotions_v1/2.0.0/com/google/api/services/merchantapi/promotions_v1/Merchant.java

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -599,24 +599,24 @@ public List setParent(java.lang.String parent) {
599599
}
600600

601601
/**
602-
* Output only. The maximum number of promotions to return. The service may return fewer
603-
* than this value. The maximum value is 250; values above 250 will be coerced to 250. If
602+
* Optional. The maximum number of promotions to return. The service may return fewer than
603+
* this value. The maximum value is 250; values above 250 will be coerced to 250. If
604604
* unspecified, the maximum number of promotions will be returned.
605605
*/
606606
@com.google.api.client.util.Key
607607
private java.lang.Integer pageSize;
608608

609-
/** Output only. The maximum number of promotions to return. The service may return fewer than this
610-
value. The maximum value is 250; values above 250 will be coerced to 250. If unspecified, the
611-
maximum number of promotions will be returned.
609+
/** Optional. The maximum number of promotions to return. The service may return fewer than this value.
610+
The maximum value is 250; values above 250 will be coerced to 250. If unspecified, the maximum
611+
number of promotions will be returned.
612612
*/
613613
public java.lang.Integer getPageSize() {
614614
return pageSize;
615615
}
616616

617617
/**
618-
* Output only. The maximum number of promotions to return. The service may return fewer
619-
* than this value. The maximum value is 250; values above 250 will be coerced to 250. If
618+
* Optional. The maximum number of promotions to return. The service may return fewer than
619+
* this value. The maximum value is 250; values above 250 will be coerced to 250. If
620620
* unspecified, the maximum number of promotions will be returned.
621621
*/
622622
public List setPageSize(java.lang.Integer pageSize) {
@@ -625,14 +625,14 @@ public List setPageSize(java.lang.Integer pageSize) {
625625
}
626626

627627
/**
628-
* Output only. A page token, received from a previous `ListPromotions` call. Provide this
629-
* to retrieve the subsequent page. When paginating, all other parameters provided to
628+
* Optional. A page token, received from a previous `ListPromotions` call. Provide this to
629+
* retrieve the subsequent page. When paginating, all other parameters provided to
630630
* `ListPromotions` must match the call that provided the page token.
631631
*/
632632
@com.google.api.client.util.Key
633633
private java.lang.String pageToken;
634634

635-
/** Output only. A page token, received from a previous `ListPromotions` call. Provide this to retrieve
635+
/** Optional. A page token, received from a previous `ListPromotions` call. Provide this to retrieve
636636
the subsequent page. When paginating, all other parameters provided to `ListPromotions` must match
637637
the call that provided the page token.
638638
*/
@@ -641,8 +641,8 @@ public java.lang.String getPageToken() {
641641
}
642642

643643
/**
644-
* Output only. A page token, received from a previous `ListPromotions` call. Provide this
645-
* to retrieve the subsequent page. When paginating, all other parameters provided to
644+
* Optional. A page token, received from a previous `ListPromotions` call. Provide this to
645+
* retrieve the subsequent page. When paginating, all other parameters provided to
646646
* `ListPromotions` must match the call that provided the page token.
647647
*/
648648
public List setPageToken(java.lang.String pageToken) {

0 commit comments

Comments
 (0)