Request schema for listing namespaces.
| Name | Type | Description | Notes |
|---|---|---|---|
| filters | Dict[str, object] | Optional filters to apply to the namespace list. Supports filtering by namespace_id or namespace_name. | [optional] |
| sort | Dict[str, object] | Optional sort criteria for the namespace list. | [optional] |
| search | str | Search term for wildcard search across namespace_id, namespace_name, description, and other text fields. | [optional] |
| case_sensitive | bool | If True, filters and search will be case-sensitive | [optional] [default to False] |
from mixpeek.models.list_namespaces_request import ListNamespacesRequest
# TODO update the JSON string below
json = "{}"
# create an instance of ListNamespacesRequest from a JSON string
list_namespaces_request_instance = ListNamespacesRequest.from_json(json)
# print the JSON string representation of the object
print(ListNamespacesRequest.to_json())
# convert the object into a dict
list_namespaces_request_dict = list_namespaces_request_instance.to_dict()
# create an instance of ListNamespacesRequest from a dict
list_namespaces_request_from_dict = ListNamespacesRequest.from_dict(list_namespaces_request_dict)