| Name |
Type |
Description |
Notes |
| parent |
List[str] |
|
[optional] |
| page_token |
str |
An opaque token that allows pagination for list APIs (e.g. ListNamespaces). For an initial client request for a list API, if the server cannot return all items in one response, or if there are more items than the `pageSize` specified in the client request, the server must return a `nextPageToken` in the response indicating there are more results available. After the initial request, the value of `nextPageToken` from each response must be used by the client as the `pageToken` parameter value for the next request. Clients must interpret either `null`, missing value or empty string value of `nextPageToken` from a server response as the end of the listing results. |
[optional] |
| page_size |
int |
An inclusive upper bound of the number of results that a client will receive. |
[optional] |
from lance_namespace_urllib3_client.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]