Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1003 Bytes

BucketListing.md

File metadata and controls

31 lines (22 loc) · 1003 Bytes

BucketListing

List of Bucket representations.

Properties

Name Type Description Notes
links Dict[str, LinksValue] [optional]
buckets List[Bucket]

Example

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)

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