List of Bucket representations.
Name | Type | Description | Notes |
---|---|---|---|
links | Dict[str, LinksValue] | [optional] | |
buckets | List[Bucket] |
from waylay.services.storage.models.bucket_listing import BucketListing
# TODO update the JSON string below
json = "{}"
# create an instance of BucketListing from a JSON string
bucket_listing_instance = BucketListing.from_json(json)
# print the JSON string representation of the object
print BucketListing.to_json()
# convert the object into a dict
bucket_listing_dict = bucket_listing_instance.to_dict()
# create an instance of BucketListing from a dict
bucket_listing_form_dict = bucket_listing.from_dict(bucket_listing_dict)