Listing object for subscriptions.
Name | Type | Description | Notes |
---|---|---|---|
links | Dict[str, LinksValue] | [optional] | |
bucket | Bucket | ||
subscriptions | List[SubscriptionConfig] | ||
warnings | List[object] | [optional] |
from waylay.services.storage.models.subscriptions import Subscriptions
# TODO update the JSON string below
json = "{}"
# create an instance of Subscriptions from a JSON string
subscriptions_instance = Subscriptions.from_json(json)
# print the JSON string representation of the object
print Subscriptions.to_json()
# convert the object into a dict
subscriptions_dict = subscriptions_instance.to_dict()
# create an instance of Subscriptions from a dict
subscriptions_form_dict = subscriptions.from_dict(subscriptions_dict)