3030from bandwidth .exceptions import ApiAttributeError
3131
3232
33+ def lazy_import ():
34+ from bandwidth .model .lookup_status_enum import LookupStatusEnum
35+ globals ()['LookupStatusEnum' ] = LookupStatusEnum
36+
3337
3438class CreateLookupResponse (ModelNormal ):
3539 """NOTE: This class is auto generated by OpenAPI Generator.
@@ -67,6 +71,7 @@ def additional_properties_type():
6771 This must be a method because a model may have properties that are
6872 of type self, this must run after the class is loaded
6973 """
74+ lazy_import ()
7075 return (bool , date , datetime , dict , float , int , list , str , none_type ,) # noqa: E501
7176
7277 _nullable = False
@@ -81,9 +86,10 @@ def openapi_types():
8186 openapi_types (dict): The key is attribute name
8287 and the value is attribute type.
8388 """
89+ lazy_import ()
8490 return {
8591 'request_id' : (str ,), # noqa: E501
86- 'status' : (str ,), # noqa: E501
92+ 'status' : (LookupStatusEnum ,), # noqa: E501
8793 }
8894
8995 @cached_property
@@ -138,7 +144,7 @@ def _from_openapi_data(cls, *args, **kwargs): # noqa: E501
138144 through its discriminator because we passed in
139145 _visited_composed_classes = (Animal,)
140146 request_id (str): [optional] # noqa: E501
141- status (str ): [optional] # noqa: E501
147+ status (LookupStatusEnum ): [optional] # noqa: E501
142148 """
143149
144150 _check_type = kwargs .pop ('_check_type' , True )
@@ -225,7 +231,7 @@ def __init__(self, *args, **kwargs): # noqa: E501
225231 through its discriminator because we passed in
226232 _visited_composed_classes = (Animal,)
227233 request_id (str): [optional] # noqa: E501
228- status (str ): [optional] # noqa: E501
234+ status (LookupStatusEnum ): [optional] # noqa: E501
229235 """
230236
231237 _check_type = kwargs .pop ('_check_type' , True )
0 commit comments