@@ -32,6 +32,7 @@ def openapi_types(_):
3232 "name" : (str ,),
3333 "restrictions" : ([TimeRestriction ],),
3434 "rotation_start" : (datetime ,),
35+ "time_zone" : (str ,),
3536 }
3637
3738 attribute_map = {
@@ -41,6 +42,7 @@ def openapi_types(_):
4142 "name" : "name" ,
4243 "restrictions" : "restrictions" ,
4344 "rotation_start" : "rotation_start" ,
45+ "time_zone" : "time_zone" ,
4446 }
4547
4648 def __init__ (
@@ -51,6 +53,7 @@ def __init__(
5153 name : Union [str , UnsetType ] = unset ,
5254 restrictions : Union [List [TimeRestriction ], UnsetType ] = unset ,
5355 rotation_start : Union [datetime , UnsetType ] = unset ,
56+ time_zone : Union [str , UnsetType ] = unset ,
5457 ** kwargs ,
5558 ):
5659 """
@@ -73,6 +76,9 @@ def __init__(
7376
7477 :param rotation_start: The date/time when the rotation starts (ISO 8601).
7578 :type rotation_start: datetime, optional
79+
80+ :param time_zone: The time zone for this layer.
81+ :type time_zone: str, optional
7682 """
7783 if effective_date is not unset :
7884 kwargs ["effective_date" ] = effective_date
@@ -86,4 +92,6 @@ def __init__(
8692 kwargs ["restrictions" ] = restrictions
8793 if rotation_start is not unset :
8894 kwargs ["rotation_start" ] = rotation_start
95+ if time_zone is not unset :
96+ kwargs ["time_zone" ] = time_zone
8997 super ().__init__ (kwargs )
0 commit comments