| Name |
Type |
Description |
Notes |
| name |
str |
|
|
| parent |
List[str] |
|
[optional] |
| properties |
Dict[str, str] |
|
[optional] |
from lance_namespace_urllib3_client.models.create_namespace_response import CreateNamespaceResponse
# TODO update the JSON string below
json = "{}"
# create an instance of CreateNamespaceResponse from a JSON string
create_namespace_response_instance = CreateNamespaceResponse.from_json(json)
# print the JSON string representation of the object
print(CreateNamespaceResponse.to_json())
# convert the object into a dict
create_namespace_response_dict = create_namespace_response_instance.to_dict()
# create an instance of CreateNamespaceResponse from a dict
create_namespace_response_from_dict = CreateNamespaceResponse.from_dict(create_namespace_response_dict)
[Back to Model list] [Back to API list] [Back to README]