2929 LayerAttributes .JSON_PROPERTY_INTERVAL ,
3030 LayerAttributes .JSON_PROPERTY_NAME ,
3131 LayerAttributes .JSON_PROPERTY_RESTRICTIONS ,
32- LayerAttributes .JSON_PROPERTY_ROTATION_START
32+ LayerAttributes .JSON_PROPERTY_ROTATION_START ,
33+ LayerAttributes .JSON_PROPERTY_TIME_ZONE
3334})
3435@ jakarta .annotation .Generated (
3536 value = "https://github.com/DataDog/datadog-api-client-java/blob/master/.generator" )
@@ -53,6 +54,9 @@ public class LayerAttributes {
5354 public static final String JSON_PROPERTY_ROTATION_START = "rotation_start" ;
5455 private OffsetDateTime rotationStart ;
5556
57+ public static final String JSON_PROPERTY_TIME_ZONE = "time_zone" ;
58+ private String timeZone ;
59+
5660 public LayerAttributes effectiveDate (OffsetDateTime effectiveDate ) {
5761 this .effectiveDate = effectiveDate ;
5862 return this ;
@@ -193,6 +197,27 @@ public void setRotationStart(OffsetDateTime rotationStart) {
193197 this .rotationStart = rotationStart ;
194198 }
195199
200+ public LayerAttributes timeZone (String timeZone ) {
201+ this .timeZone = timeZone ;
202+ return this ;
203+ }
204+
205+ /**
206+ * The time zone for this layer.
207+ *
208+ * @return timeZone
209+ */
210+ @ jakarta .annotation .Nullable
211+ @ JsonProperty (JSON_PROPERTY_TIME_ZONE )
212+ @ JsonInclude (value = JsonInclude .Include .USE_DEFAULTS )
213+ public String getTimeZone () {
214+ return timeZone ;
215+ }
216+
217+ public void setTimeZone (String timeZone ) {
218+ this .timeZone = timeZone ;
219+ }
220+
196221 /**
197222 * A container for additional, undeclared properties. This is a holder for any undeclared
198223 * properties as specified with the 'additionalProperties' keyword in the OAS document.
@@ -255,13 +280,21 @@ public boolean equals(Object o) {
255280 && Objects .equals (this .name , layerAttributes .name )
256281 && Objects .equals (this .restrictions , layerAttributes .restrictions )
257282 && Objects .equals (this .rotationStart , layerAttributes .rotationStart )
283+ && Objects .equals (this .timeZone , layerAttributes .timeZone )
258284 && Objects .equals (this .additionalProperties , layerAttributes .additionalProperties );
259285 }
260286
261287 @ Override
262288 public int hashCode () {
263289 return Objects .hash (
264- effectiveDate , endDate , interval , name , restrictions , rotationStart , additionalProperties );
290+ effectiveDate ,
291+ endDate ,
292+ interval ,
293+ name ,
294+ restrictions ,
295+ rotationStart ,
296+ timeZone ,
297+ additionalProperties );
265298 }
266299
267300 @ Override
@@ -274,6 +307,7 @@ public String toString() {
274307 sb .append (" name: " ).append (toIndentedString (name )).append ("\n " );
275308 sb .append (" restrictions: " ).append (toIndentedString (restrictions )).append ("\n " );
276309 sb .append (" rotationStart: " ).append (toIndentedString (rotationStart )).append ("\n " );
310+ sb .append (" timeZone: " ).append (toIndentedString (timeZone )).append ("\n " );
277311 sb .append (" additionalProperties: " )
278312 .append (toIndentedString (additionalProperties ))
279313 .append ("\n " );
0 commit comments