diff --git a/garage b/garage index ba67922..0dc0f51 160000 --- a/garage +++ b/garage @@ -1 +1 @@ -Subproject commit ba6792231072c32f4de3cd2cec0788c55e7de6c0 +Subproject commit 0dc0f519e119ae1c560d51e37af21187e99c8b57 diff --git a/python/docs/AddNode200ResponseInner.md b/python/docs/AddNode200ResponseInner.md index 71366d5..f6d02eb 100644 --- a/python/docs/AddNode200ResponseInner.md +++ b/python/docs/AddNode200ResponseInner.md @@ -5,7 +5,7 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **success** | **bool** | | [optional] -**error** | **str** | | [optional] +**error** | **str, none_type** | | [optional] **any string name** | **bool, date, datetime, dict, float, int, list, str, none_type** | any string name can be used but the value must be the correct type | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/python/garage_admin_sdk/model/add_node200_response_inner.py b/python/garage_admin_sdk/model/add_node200_response_inner.py index fea53c7..14cd1b2 100644 --- a/python/garage_admin_sdk/model/add_node200_response_inner.py +++ b/python/garage_admin_sdk/model/add_node200_response_inner.py @@ -82,7 +82,7 @@ class AddNode200ResponseInner(ModelNormal): """ return { 'success': (bool,), # noqa: E501 - 'error': (str,), # noqa: E501 + 'error': (str, none_type,), # noqa: E501 } @cached_property @@ -137,7 +137,7 @@ class AddNode200ResponseInner(ModelNormal): through its discriminator because we passed in _visited_composed_classes = (Animal,) success (bool): [optional] # noqa: E501 - error (str): [optional] # noqa: E501 + error (str, none_type): [optional] # noqa: E501 """ _check_type = kwargs.pop('_check_type', True) @@ -224,7 +224,7 @@ class AddNode200ResponseInner(ModelNormal): through its discriminator because we passed in _visited_composed_classes = (Animal,) success (bool): [optional] # noqa: E501 - error (str): [optional] # noqa: E501 + error (str, none_type): [optional] # noqa: E501 """ _check_type = kwargs.pop('_check_type', True)