Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.53 KB

File metadata and controls

35 lines (26 loc) · 1.53 KB

ListBucketsRequest

Request model for listing buckets.

Properties

Name Type Description Notes
search str Search term for wildcard search across bucket_id, bucket_name, description, and other text fields [optional]
filters Dict[str, object] Filters to apply to the bucket list. Supports filtering by bucket_id or bucket_name. [optional]
sort Dict[str, object] Sort options for the bucket list [optional]
case_sensitive bool If True, filters and search will be case-sensitive [optional] [default to False]
limit int Number of results to return [optional] [default to 10]
offset int Number of results to skip [optional] [default to 0]

Example

from mixpeek.models.list_buckets_request import ListBucketsRequest

# TODO update the JSON string below
json = "{}"
# create an instance of ListBucketsRequest from a JSON string
list_buckets_request_instance = ListBucketsRequest.from_json(json)
# print the JSON string representation of the object
print(ListBucketsRequest.to_json())

# convert the object into a dict
list_buckets_request_dict = list_buckets_request_instance.to_dict()
# create an instance of ListBucketsRequest from a dict
list_buckets_request_from_dict = ListBucketsRequest.from_dict(list_buckets_request_dict)

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