@@ -87,6 +87,7 @@ def openapi_types():
8787 """
8888 return {
8989 'ready' : (bool ,), # noqa: E501
90+ 'state' : (str ,), # noqa: E501
9091 }
9192
9293 @cached_property
@@ -96,6 +97,7 @@ def discriminator():
9697
9798 attribute_map = {
9899 'ready' : 'ready' , # noqa: E501
100+ 'state' : 'state' , # noqa: E501
99101 }
100102
101103 read_only_vars = {
@@ -140,6 +142,7 @@ def _from_openapi_data(cls, *args, **kwargs): # noqa: E501
140142 through its discriminator because we passed in
141143 _visited_composed_classes = (Animal,)
142144 ready (bool): [optional] # noqa: E501
145+ state (str): [optional] # noqa: E501
143146 """
144147
145148 _check_type = kwargs .pop ('_check_type' , True )
@@ -222,6 +225,7 @@ def __init__(self, *args, **kwargs): # noqa: E501
222225 through its discriminator because we passed in
223226 _visited_composed_classes = (Animal,)
224227 ready (bool): [optional] # noqa: E501
228+ state (str): [optional] # noqa: E501
225229 """
226230
227231 _check_type = kwargs .pop ('_check_type' , True )
0 commit comments