@@ -87,7 +87,7 @@ def openapi_types():
8787 'stream' : (V4Stream , none_type ), # noqa: E501
8888 'form_message_id' : (str , none_type ), # noqa: E501
8989 'form_id' : (str , none_type ), # noqa: E501
90- 'form_values' : ({str : (bool , date , datetime , dict , float , int , list , str , none_type )}, none_type ), # noqa: E501
90+ 'form_values' : ({str : (str ,)}, none_type ), # noqa: E501
9191 }
9292
9393 @cached_property
@@ -146,7 +146,7 @@ def _from_openapi_data(cls, *args, **kwargs): # noqa: E501
146146 stream (V4Stream): [optional] # noqa: E501
147147 form_message_id (str): The id of the message that contains the Form. [optional] # noqa: E501
148148 form_id (str): The id of the Form element. [optional] # noqa: E501
149- form_values ({str: (bool, date, datetime, dict, float, int, list, str, none_type )}): The values (in JSON format) answered on the Form. [optional] # noqa: E501
149+ form_values ({str: (str,)}): The values (in JSON format) answered on the Form. [optional] # noqa: E501
150150 """
151151
152152 _check_type = kwargs .pop ('_check_type' , True )
@@ -231,7 +231,7 @@ def __init__(self, *args, **kwargs): # noqa: E501
231231 stream (V4Stream): [optional] # noqa: E501
232232 form_message_id (str): The id of the message that contains the Form. [optional] # noqa: E501
233233 form_id (str): The id of the Form element. [optional] # noqa: E501
234- form_values ({str: (bool, date, datetime, dict, float, int, list, str, none_type )}): The values (in JSON format) answered on the Form. [optional] # noqa: E501
234+ form_values ({str: (str,)}): The values (in JSON format) answered on the Form. [optional] # noqa: E501
235235 """
236236
237237 _check_type = kwargs .pop ('_check_type' , True )
@@ -260,7 +260,7 @@ def __init__(self, *args, **kwargs): # noqa: E501
260260 self .stream : V4Stream = None
261261 self .form_message_id : str = None
262262 self .form_id : str = None
263- self .form_values : Union [{str : (bool , date , datetime , dict , float , int , list , str , none_type )}] = None
263+ self .form_values : Union [{str : (str ,)}] = None
264264 for var_name , var_value in kwargs .items ():
265265 if var_name not in self .attribute_map and \
266266 self ._configuration is not None and \
0 commit comments