Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.08 KB

SubscriptionsListing.md

File metadata and controls

31 lines (22 loc) · 1.08 KB

SubscriptionsListing

List of buckets that support subscriptions.

Properties

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

Example

from waylay.services.storage.models.subscriptions_listing import SubscriptionsListing

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

# convert the object into a dict
subscriptions_listing_dict = subscriptions_listing_instance.to_dict()
# create an instance of SubscriptionsListing from a dict
subscriptions_listing_form_dict = subscriptions_listing.from_dict(subscriptions_listing_dict)

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