@@ -80,9 +80,6 @@ class Company(ModelNormal):
80
80
}
81
81
82
82
validations = {
83
- ('name' ,): {
84
- 'min_length' : 1 ,
85
- },
86
83
}
87
84
88
85
additional_properties_type = None
@@ -101,7 +98,7 @@ def openapi_types():
101
98
"""
102
99
lazy_import ()
103
100
return {
104
- 'name' : (str ,), # noqa: E501
101
+ 'name' : (str , none_type , ), # noqa: E501
105
102
'id' : (str ,), # noqa: E501
106
103
'interaction_count' : (int , none_type ,), # noqa: E501
107
104
'owner_id' : (str , none_type ,), # noqa: E501
@@ -214,7 +211,7 @@ def _from_openapi_data(cls, name, *args, **kwargs): # noqa: E501
214
211
"""Company - a model defined in OpenAPI
215
212
216
213
Args:
217
- name (str): Name of the company
214
+ name (str, none_type ): Name of the company
218
215
219
216
Keyword Args:
220
217
_check_type (bool): if True, values for parameters in openapi_types
@@ -339,7 +336,7 @@ def __init__(self, name, *args, **kwargs): # noqa: E501
339
336
"""Company - a model defined in OpenAPI
340
337
341
338
Args:
342
- name (str): Name of the company
339
+ name (str, none_type ): Name of the company
343
340
344
341
Keyword Args:
345
342
_check_type (bool): if True, values for parameters in openapi_types
0 commit comments