17
17
package com .google .api .services .css .v1 .model ;
18
18
19
19
/**
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.
21
22
*
22
23
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
23
24
* transmitted over HTTP when working with the CSS API. For a detailed explanation see:
30
31
public final class Certification extends com .google .api .client .json .GenericJson {
31
32
32
33
/**
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.
34
36
* The value may be {@code null}.
35
37
*/
36
38
@ com .google .api .client .util .Key
37
39
private java .lang .String authority ;
38
40
39
41
/**
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.
41
45
* The value may be {@code null}.
42
46
*/
43
47
@ com .google .api .client .util .Key
44
48
private java .lang .String code ;
45
49
46
50
/**
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.
48
54
* The value may be {@code null}.
49
55
*/
50
56
@ com .google .api .client .util .Key
51
57
private java .lang .String name ;
52
58
53
59
/**
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.
55
62
* @return value or {@code null} for none
56
63
*/
57
64
public java .lang .String getAuthority () {
58
65
return authority ;
59
66
}
60
67
61
68
/**
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.
63
71
* @param authority authority or {@code null} for none
64
72
*/
65
73
public Certification setAuthority (java .lang .String authority ) {
@@ -68,15 +76,19 @@ public Certification setAuthority(java.lang.String authority) {
68
76
}
69
77
70
78
/**
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.
72
82
* @return value or {@code null} for none
73
83
*/
74
84
public java .lang .String getCode () {
75
85
return code ;
76
86
}
77
87
78
88
/**
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.
80
92
* @param code code or {@code null} for none
81
93
*/
82
94
public Certification setCode (java .lang .String code ) {
@@ -85,15 +97,19 @@ public Certification setCode(java.lang.String code) {
85
97
}
86
98
87
99
/**
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.
89
103
* @return value or {@code null} for none
90
104
*/
91
105
public java .lang .String getName () {
92
106
return name ;
93
107
}
94
108
95
109
/**
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.
97
113
* @param name name or {@code null} for none
98
114
*/
99
115
public Certification setName (java .lang .String name ) {
0 commit comments