@@ -46,6 +46,9 @@ class ScheduleUpdateRequestDataAttributesLayersItems
4646 # The date/time at which the rotation begins (ISO 8601 format).
4747 attr_reader :rotation_start
4848
49+ # The time zone for this layer.
50+ attr_accessor :time_zone
51+
4952 attr_accessor :additional_properties
5053
5154 # Attribute mapping from ruby-style variable name to JSON key.
@@ -59,7 +62,8 @@ def self.attribute_map
5962 :'members' => :'members' ,
6063 :'name' => :'name' ,
6164 :'restrictions' => :'restrictions' ,
62- :'rotation_start' => :'rotation_start'
65+ :'rotation_start' => :'rotation_start' ,
66+ :'time_zone' => :'time_zone'
6367 }
6468 end
6569
@@ -74,7 +78,8 @@ def self.openapi_types
7478 :'members' => :'Array<ScheduleRequestDataAttributesLayersItemsMembersItems>' ,
7579 :'name' => :'String' ,
7680 :'restrictions' => :'Array<TimeRestriction>' ,
77- :'rotation_start' => :'Time'
81+ :'rotation_start' => :'Time' ,
82+ :'time_zone' => :'String'
7883 }
7984 end
8085
@@ -131,6 +136,10 @@ def initialize(attributes = {})
131136 if attributes . key? ( :'rotation_start' )
132137 self . rotation_start = attributes [ :'rotation_start' ]
133138 end
139+
140+ if attributes . key? ( :'time_zone' )
141+ self . time_zone = attributes [ :'time_zone' ]
142+ end
134143 end
135144
136145 # Check to see if the all the properties in the model are valid
@@ -229,14 +238,15 @@ def ==(o)
229238 name == o . name &&
230239 restrictions == o . restrictions &&
231240 rotation_start == o . rotation_start &&
241+ time_zone == o . time_zone &&
232242 additional_properties == o . additional_properties
233243 end
234244
235245 # Calculates hash code according to all attributes.
236246 # @return [Integer] Hash code
237247 # @!visibility private
238248 def hash
239- [ effective_date , end_date , id , interval , members , name , restrictions , rotation_start , additional_properties ] . hash
249+ [ effective_date , end_date , id , interval , members , name , restrictions , rotation_start , time_zone , additional_properties ] . hash
240250 end
241251 end
242252end
0 commit comments