66
77package com .datadog .api .client .v2 .model ;
88
9- import com .fasterxml .jackson .annotation .JsonAnyGetter ;
10- import com .fasterxml .jackson .annotation .JsonAnySetter ;
119import com .fasterxml .jackson .annotation .JsonCreator ;
1210import com .fasterxml .jackson .annotation .JsonIgnore ;
1311import com .fasterxml .jackson .annotation .JsonInclude ;
1412import com .fasterxml .jackson .annotation .JsonProperty ;
1513import com .fasterxml .jackson .annotation .JsonPropertyOrder ;
16- import java .util .HashMap ;
17- import java .util .Map ;
1814import java .util .Objects ;
1915
2016/** File metadata for reference tables created by cloud storage. */
@@ -167,53 +163,6 @@ public void setSyncEnabled(Boolean syncEnabled) {
167163 this .syncEnabled = syncEnabled ;
168164 }
169165
170- /**
171- * A container for additional, undeclared properties. This is a holder for any undeclared
172- * properties as specified with the 'additionalProperties' keyword in the OAS document.
173- */
174- private Map <String , Object > additionalProperties ;
175-
176- /**
177- * Set the additional (undeclared) property with the specified name and value. If the property
178- * does not already exist, create it otherwise replace it.
179- *
180- * @param key The arbitrary key to set
181- * @param value The associated value
182- * @return TableResultV2DataAttributesFileMetadataCloudStorage
183- */
184- @ JsonAnySetter
185- public TableResultV2DataAttributesFileMetadataCloudStorage putAdditionalProperty (
186- String key , Object value ) {
187- if (this .additionalProperties == null ) {
188- this .additionalProperties = new HashMap <String , Object >();
189- }
190- this .additionalProperties .put (key , value );
191- return this ;
192- }
193-
194- /**
195- * Return the additional (undeclared) property.
196- *
197- * @return The additional properties
198- */
199- @ JsonAnyGetter
200- public Map <String , Object > getAdditionalProperties () {
201- return additionalProperties ;
202- }
203-
204- /**
205- * Return the additional (undeclared) property with the specified name.
206- *
207- * @param key The arbitrary key to get
208- * @return The specific additional property for the given key
209- */
210- public Object getAdditionalProperty (String key ) {
211- if (this .additionalProperties == null ) {
212- return null ;
213- }
214- return this .additionalProperties .get (key );
215- }
216-
217166 /**
218167 * Return true if this TableResultV2DataAttributesFileMetadataCloudStorage object is equal to o.
219168 */
@@ -237,16 +186,12 @@ public boolean equals(Object o) {
237186 && Objects .equals (
238187 this .errorType , tableResultV2DataAttributesFileMetadataCloudStorage .errorType )
239188 && Objects .equals (
240- this .syncEnabled , tableResultV2DataAttributesFileMetadataCloudStorage .syncEnabled )
241- && Objects .equals (
242- this .additionalProperties ,
243- tableResultV2DataAttributesFileMetadataCloudStorage .additionalProperties );
189+ this .syncEnabled , tableResultV2DataAttributesFileMetadataCloudStorage .syncEnabled );
244190 }
245191
246192 @ Override
247193 public int hashCode () {
248- return Objects .hash (
249- accessDetails , errorMessage , errorRowCount , errorType , syncEnabled , additionalProperties );
194+ return Objects .hash (accessDetails , errorMessage , errorRowCount , errorType , syncEnabled );
250195 }
251196
252197 @ Override
@@ -258,9 +203,6 @@ public String toString() {
258203 sb .append (" errorRowCount: " ).append (toIndentedString (errorRowCount )).append ("\n " );
259204 sb .append (" errorType: " ).append (toIndentedString (errorType )).append ("\n " );
260205 sb .append (" syncEnabled: " ).append (toIndentedString (syncEnabled )).append ("\n " );
261- sb .append (" additionalProperties: " )
262- .append (toIndentedString (additionalProperties ))
263- .append ("\n " );
264206 sb .append ('}' );
265207 return sb .toString ();
266208 }
0 commit comments