2424 CreateDegradationRequestDataAttributes .JSON_PROPERTY_COMPONENTS_AFFECTED ,
2525 CreateDegradationRequestDataAttributes .JSON_PROPERTY_DESCRIPTION ,
2626 CreateDegradationRequestDataAttributes .JSON_PROPERTY_STATUS ,
27- CreateDegradationRequestDataAttributes .JSON_PROPERTY_TITLE ,
28- CreateDegradationRequestDataAttributes .JSON_PROPERTY_UPDATES
27+ CreateDegradationRequestDataAttributes .JSON_PROPERTY_TITLE
2928})
3029@ jakarta .annotation .Generated (
3130 value = "https://github.com/DataDog/datadog-api-client-java/blob/master/.generator" )
@@ -44,9 +43,6 @@ public class CreateDegradationRequestDataAttributes {
4443 public static final String JSON_PROPERTY_TITLE = "title" ;
4544 private String title ;
4645
47- public static final String JSON_PROPERTY_UPDATES = "updates" ;
48- private List <CreateDegradationRequestDataAttributesUpdatesItems > updates = null ;
49-
5046 public CreateDegradationRequestDataAttributes () {}
5147
5248 @ JsonCreator
@@ -161,41 +157,6 @@ public void setTitle(String title) {
161157 this .title = title ;
162158 }
163159
164- public CreateDegradationRequestDataAttributes updates (
165- List <CreateDegradationRequestDataAttributesUpdatesItems > updates ) {
166- this .updates = updates ;
167- for (CreateDegradationRequestDataAttributesUpdatesItems item : updates ) {
168- this .unparsed |= item .unparsed ;
169- }
170- return this ;
171- }
172-
173- public CreateDegradationRequestDataAttributes addUpdatesItem (
174- CreateDegradationRequestDataAttributesUpdatesItems updatesItem ) {
175- if (this .updates == null ) {
176- this .updates = new ArrayList <>();
177- }
178- this .updates .add (updatesItem );
179- this .unparsed |= updatesItem .unparsed ;
180- return this ;
181- }
182-
183- /**
184- * Getupdates
185- *
186- * @return updates
187- */
188- @ jakarta .annotation .Nullable
189- @ JsonProperty (JSON_PROPERTY_UPDATES )
190- @ JsonInclude (value = JsonInclude .Include .USE_DEFAULTS )
191- public List <CreateDegradationRequestDataAttributesUpdatesItems > getUpdates () {
192- return updates ;
193- }
194-
195- public void setUpdates (List <CreateDegradationRequestDataAttributesUpdatesItems > updates ) {
196- this .updates = updates ;
197- }
198-
199160 /**
200161 * A container for additional, undeclared properties. This is a holder for any undeclared
201162 * properties as specified with the 'additionalProperties' keyword in the OAS document.
@@ -258,15 +219,13 @@ public boolean equals(Object o) {
258219 && Objects .equals (this .description , createDegradationRequestDataAttributes .description )
259220 && Objects .equals (this .status , createDegradationRequestDataAttributes .status )
260221 && Objects .equals (this .title , createDegradationRequestDataAttributes .title )
261- && Objects .equals (this .updates , createDegradationRequestDataAttributes .updates )
262222 && Objects .equals (
263223 this .additionalProperties , createDegradationRequestDataAttributes .additionalProperties );
264224 }
265225
266226 @ Override
267227 public int hashCode () {
268- return Objects .hash (
269- componentsAffected , description , status , title , updates , additionalProperties );
228+ return Objects .hash (componentsAffected , description , status , title , additionalProperties );
270229 }
271230
272231 @ Override
@@ -277,7 +236,6 @@ public String toString() {
277236 sb .append (" description: " ).append (toIndentedString (description )).append ("\n " );
278237 sb .append (" status: " ).append (toIndentedString (status )).append ("\n " );
279238 sb .append (" title: " ).append (toIndentedString (title )).append ("\n " );
280- sb .append (" updates: " ).append (toIndentedString (updates )).append ("\n " );
281239 sb .append (" additionalProperties: " )
282240 .append (toIndentedString (additionalProperties ))
283241 .append ("\n " );
0 commit comments