The search results for buckets.
Name | Type | Description | Notes |
---|---|---|---|
buckets | List[BucketSearchResultsBucketsInner] | An array of buckets. | [optional] |
meta | BucketSearchResultsMeta | [optional] | |
query | BucketSearchResultsQuery | [optional] |
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)