TenantUpdate
Properties
| Name |
Type |
Description |
Notes |
| description |
str |
Omit to leave the description unchanged; send an empty string to clear it. |
[optional] |
Example
from lakefs_enterprise_sdk.models.tenant_update import TenantUpdate
# TODO update the JSON string below
json = "{}"
# create an instance of TenantUpdate from a JSON string
tenant_update_instance = TenantUpdate.from_json(json)
# print the JSON string representation of the object
print TenantUpdate.to_json()
# convert the object into a dict
tenant_update_dict = tenant_update_instance.to_dict()
# create an instance of TenantUpdate from a dict
tenant_update_form_dict = tenant_update.from_dict(tenant_update_dict)