2121
2222/** Full Framework Data Attributes. */
2323@ JsonPropertyOrder ({
24- FullCustomFrameworkDataAttributes .JSON_PROPERTY_DESCRIPTION ,
2524 FullCustomFrameworkDataAttributes .JSON_PROPERTY_HANDLE ,
2625 FullCustomFrameworkDataAttributes .JSON_PROPERTY_ICON_URL ,
2726 FullCustomFrameworkDataAttributes .JSON_PROPERTY_NAME ,
3231 value = "https://github.com/DataDog/datadog-api-client-java/blob/master/.generator" )
3332public class FullCustomFrameworkDataAttributes {
3433 @ JsonIgnore public boolean unparsed = false ;
35- public static final String JSON_PROPERTY_DESCRIPTION = "description" ;
36- private String description ;
37-
3834 public static final String JSON_PROPERTY_HANDLE = "handle" ;
3935 private String handle ;
4036
@@ -54,41 +50,17 @@ public FullCustomFrameworkDataAttributes() {}
5450
5551 @ JsonCreator
5652 public FullCustomFrameworkDataAttributes (
57- @ JsonProperty (required = true , value = JSON_PROPERTY_DESCRIPTION ) String description ,
5853 @ JsonProperty (required = true , value = JSON_PROPERTY_HANDLE ) String handle ,
59- @ JsonProperty (required = true , value = JSON_PROPERTY_ICON_URL ) String iconUrl ,
6054 @ JsonProperty (required = true , value = JSON_PROPERTY_NAME ) String name ,
6155 @ JsonProperty (required = true , value = JSON_PROPERTY_REQUIREMENTS )
6256 List <CustomFrameworkRequirement > requirements ,
6357 @ JsonProperty (required = true , value = JSON_PROPERTY_VERSION ) String version ) {
64- this .description = description ;
6558 this .handle = handle ;
66- this .iconUrl = iconUrl ;
6759 this .name = name ;
6860 this .requirements = requirements ;
6961 this .version = version ;
7062 }
7163
72- public FullCustomFrameworkDataAttributes description (String description ) {
73- this .description = description ;
74- return this ;
75- }
76-
77- /**
78- * Framework Description
79- *
80- * @return description
81- */
82- @ JsonProperty (JSON_PROPERTY_DESCRIPTION )
83- @ JsonInclude (value = JsonInclude .Include .ALWAYS )
84- public String getDescription () {
85- return description ;
86- }
87-
88- public void setDescription (String description ) {
89- this .description = description ;
90- }
91-
9264 public FullCustomFrameworkDataAttributes handle (String handle ) {
9365 this .handle = handle ;
9466 return this ;
@@ -119,8 +91,9 @@ public FullCustomFrameworkDataAttributes iconUrl(String iconUrl) {
11991 *
12092 * @return iconUrl
12193 */
94+ @ jakarta .annotation .Nullable
12295 @ JsonProperty (JSON_PROPERTY_ICON_URL )
123- @ JsonInclude (value = JsonInclude .Include .ALWAYS )
96+ @ JsonInclude (value = JsonInclude .Include .USE_DEFAULTS )
12497 public String getIconUrl () {
12598 return iconUrl ;
12699 }
@@ -257,8 +230,7 @@ public boolean equals(Object o) {
257230 }
258231 FullCustomFrameworkDataAttributes fullCustomFrameworkDataAttributes =
259232 (FullCustomFrameworkDataAttributes ) o ;
260- return Objects .equals (this .description , fullCustomFrameworkDataAttributes .description )
261- && Objects .equals (this .handle , fullCustomFrameworkDataAttributes .handle )
233+ return Objects .equals (this .handle , fullCustomFrameworkDataAttributes .handle )
262234 && Objects .equals (this .iconUrl , fullCustomFrameworkDataAttributes .iconUrl )
263235 && Objects .equals (this .name , fullCustomFrameworkDataAttributes .name )
264236 && Objects .equals (this .requirements , fullCustomFrameworkDataAttributes .requirements )
@@ -269,15 +241,13 @@ public boolean equals(Object o) {
269241
270242 @ Override
271243 public int hashCode () {
272- return Objects .hash (
273- description , handle , iconUrl , name , requirements , version , additionalProperties );
244+ return Objects .hash (handle , iconUrl , name , requirements , version , additionalProperties );
274245 }
275246
276247 @ Override
277248 public String toString () {
278249 StringBuilder sb = new StringBuilder ();
279250 sb .append ("class FullCustomFrameworkDataAttributes {\n " );
280- sb .append (" description: " ).append (toIndentedString (description )).append ("\n " );
281251 sb .append (" handle: " ).append (toIndentedString (handle )).append ("\n " );
282252 sb .append (" iconUrl: " ).append (toIndentedString (iconUrl )).append ("\n " );
283253 sb .append (" name: " ).append (toIndentedString (name )).append ("\n " );
0 commit comments