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