Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1.23 KB

BucketSearchResults.md

File metadata and controls

31 lines (23 loc) · 1.23 KB

BucketSearchResults

The search results for buckets.

Properties

Name Type Description Notes
buckets List[BucketSearchResultsBucketsInner] An array of buckets. [optional]
meta BucketSearchResultsMeta [optional]
query BucketSearchResultsQuery [optional]

Example

from openbuckets.models.bucket_search_results import BucketSearchResults

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

# convert the object into a dict
bucket_search_results_dict = bucket_search_results_instance.to_dict()
# create an instance of BucketSearchResults from a dict
bucket_search_results_form_dict = bucket_search_results.from_dict(bucket_search_results_dict)

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