Skip to content

Commit 0f89f09

Browse files
1 parent 077e750 commit 0f89f09

File tree

4 files changed

+32
-16
lines changed

4 files changed

+32
-16
lines changed

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

clients/google-api-services-css/v1/2.0.0/com/google/api/services/css/v1/model/Certification.java

Lines changed: 26 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@
1717
package com.google.api.services.css.v1.model;
1818

1919
/**
20-
* The certification for the product.
20+
* The certification for the product. Use the this attribute to describe certifications, such as
21+
* energy efficiency ratings, associated with a product.
2122
*
2223
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2324
* transmitted over HTTP when working with the CSS API. For a detailed explanation see:
@@ -30,36 +31,43 @@
3031
public final class Certification extends com.google.api.client.json.GenericJson {
3132

3233
/**
33-
* Name of the certification body.
34+
* The authority or certification body responsible for issuing the certification. At this time,
35+
* the most common value is "EC" or “European_Commission” for energy labels in the EU.
3436
* The value may be {@code null}.
3537
*/
3638
@com.google.api.client.util.Key
3739
private java.lang.String authority;
3840

3941
/**
40-
* A unique code to identify the certification.
42+
* The code of the certification. For example, for the EPREL certificate with the link
43+
* https://eprel.ec.europa.eu/screen/product/dishwashers2019/123456 the code is 123456. The code
44+
* is required for European Energy Labels.
4145
* The value may be {@code null}.
4246
*/
4347
@com.google.api.client.util.Key
4448
private java.lang.String code;
4549

4650
/**
47-
* Name of the certification.
51+
* The name of the certification. At this time, the most common value is "EPREL", which represents
52+
* energy efficiency certifications in the EU European Registry for Energy Labeling (EPREL)
53+
* database.
4854
* The value may be {@code null}.
4955
*/
5056
@com.google.api.client.util.Key
5157
private java.lang.String name;
5258

5359
/**
54-
* Name of the certification body.
60+
* The authority or certification body responsible for issuing the certification. At this time,
61+
* the most common value is "EC" or “European_Commission” for energy labels in the EU.
5562
* @return value or {@code null} for none
5663
*/
5764
public java.lang.String getAuthority() {
5865
return authority;
5966
}
6067

6168
/**
62-
* Name of the certification body.
69+
* The authority or certification body responsible for issuing the certification. At this time,
70+
* the most common value is "EC" or “European_Commission” for energy labels in the EU.
6371
* @param authority authority or {@code null} for none
6472
*/
6573
public Certification setAuthority(java.lang.String authority) {
@@ -68,15 +76,19 @@ public Certification setAuthority(java.lang.String authority) {
6876
}
6977

7078
/**
71-
* A unique code to identify the certification.
79+
* The code of the certification. For example, for the EPREL certificate with the link
80+
* https://eprel.ec.europa.eu/screen/product/dishwashers2019/123456 the code is 123456. The code
81+
* is required for European Energy Labels.
7282
* @return value or {@code null} for none
7383
*/
7484
public java.lang.String getCode() {
7585
return code;
7686
}
7787

7888
/**
79-
* A unique code to identify the certification.
89+
* The code of the certification. For example, for the EPREL certificate with the link
90+
* https://eprel.ec.europa.eu/screen/product/dishwashers2019/123456 the code is 123456. The code
91+
* is required for European Energy Labels.
8092
* @param code code or {@code null} for none
8193
*/
8294
public Certification setCode(java.lang.String code) {
@@ -85,15 +97,19 @@ public Certification setCode(java.lang.String code) {
8597
}
8698

8799
/**
88-
* Name of the certification.
100+
* The name of the certification. At this time, the most common value is "EPREL", which represents
101+
* energy efficiency certifications in the EU European Registry for Energy Labeling (EPREL)
102+
* database.
89103
* @return value or {@code null} for none
90104
*/
91105
public java.lang.String getName() {
92106
return name;
93107
}
94108

95109
/**
96-
* Name of the certification.
110+
* The name of the certification. At this time, the most common value is "EPREL", which represents
111+
* energy efficiency certifications in the EU European Registry for Energy Labeling (EPREL)
112+
* database.
97113
* @param name name or {@code null} for none
98114
*/
99115
public Certification setName(java.lang.String name) {

clients/google-api-services-css/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-css</artifactId>
11-
<version>v1-rev20240614-2.0.0</version>
12-
<name>CSS API v1-rev20240614-2.0.0</name>
11+
<version>v1-rev20240719-2.0.0</version>
12+
<name>CSS API v1-rev20240719-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

0 commit comments

Comments
 (0)