Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.46 KB

File metadata and controls

33 lines (24 loc) · 1.46 KB

ListNamespacesRequest

Request schema for listing namespaces.

Properties

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]

Example

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)

[Back to Model list] [Back to API list] [Back to README]