Skip to content

Commit e6efff9

Browse files
1 parent 18dd971 commit e6efff9

File tree

4 files changed

+36
-6
lines changed

4 files changed

+36
-6
lines changed

clients/google-api-services-content/v2.1/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-content</artifactId>
25-
<version>v2.1-rev20240609-2.0.0</version>
25+
<version>v2.1-rev20240719-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-content:v2.1-rev20240609-2.0.0'
38+
implementation 'com.google.apis:google-api-services-content:v2.1-rev20240719-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-content/v2.1/2.0.0/com/google/api/services/content/model/LoyaltyProgram.java

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,15 @@ public final class LoyaltyProgram extends com.google.api.client.json.GenericJson
4545
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
4646
private java.lang.Long loyaltyPoints;
4747

48+
/**
49+
* Optional. A date range during which the item is eligible for member price. If not specified,
50+
* the member price is always applicable. The date range is represented by a pair of ISO 8601
51+
* dates separated by a space, comma, or slash.
52+
* The value may be {@code null}.
53+
*/
54+
@com.google.api.client.util.Key
55+
private java.lang.String memberPriceEffectiveDate;
56+
4857
/**
4958
* Optional. The price for members of the given tier (instant discount price). Must be smaller or
5059
* equal to the regular price.
@@ -105,6 +114,27 @@ public LoyaltyProgram setLoyaltyPoints(java.lang.Long loyaltyPoints) {
105114
return this;
106115
}
107116

117+
/**
118+
* Optional. A date range during which the item is eligible for member price. If not specified,
119+
* the member price is always applicable. The date range is represented by a pair of ISO 8601
120+
* dates separated by a space, comma, or slash.
121+
* @return value or {@code null} for none
122+
*/
123+
public java.lang.String getMemberPriceEffectiveDate() {
124+
return memberPriceEffectiveDate;
125+
}
126+
127+
/**
128+
* Optional. A date range during which the item is eligible for member price. If not specified,
129+
* the member price is always applicable. The date range is represented by a pair of ISO 8601
130+
* dates separated by a space, comma, or slash.
131+
* @param memberPriceEffectiveDate memberPriceEffectiveDate or {@code null} for none
132+
*/
133+
public LoyaltyProgram setMemberPriceEffectiveDate(java.lang.String memberPriceEffectiveDate) {
134+
this.memberPriceEffectiveDate = memberPriceEffectiveDate;
135+
return this;
136+
}
137+
108138
/**
109139
* Optional. The price for members of the given tier (instant discount price). Must be smaller or
110140
* equal to the regular price.

clients/google-api-services-content/v2.1/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-content</artifactId>
11-
<version>v2.1-rev20240609-2.0.0</version>
12-
<name>Content API for Shopping v2.1-rev20240609-2.0.0</name>
11+
<version>v2.1-rev20240719-2.0.0</version>
12+
<name>Content API for Shopping v2.1-rev20240719-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-content/v2.1/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-content</artifactId>
25-
<version>v2.1-rev20240609-2.0.0</version>
25+
<version>v2.1-rev20240719-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-content:v2.1-rev20240609-2.0.0'
38+
implementation 'com.google.apis:google-api-services-content:v2.1-rev20240719-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)