Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.65 KB

File metadata and controls

33 lines (24 loc) · 1.65 KB

ListObjectsRequest

Request model for listing objects in a bucket.

Properties

Name Type Description Notes
filters LogicalOperatorInput Filters to apply to the object list [optional]
sort SortOption Sort options for the object list [optional]
search str Search term to filter objects by key or metadata [optional]
select List[str] OPTIONAL. List of fields to include in the response. Supports dot notation for nested fields (e.g., 'metadata.title', 'status'). When specified, only the selected fields will be returned in the object results, reducing response size. System fields like 'object_id' and 'bucket_id' are always included. Use this to optimize response size when working with large objects. [optional]

Example

from mixpeek.models.list_objects_request import ListObjectsRequest

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

# convert the object into a dict
list_objects_request_dict = list_objects_request_instance.to_dict()
# create an instance of ListObjectsRequest from a dict
list_objects_request_from_dict = ListObjectsRequest.from_dict(list_objects_request_dict)

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