Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.08 KB

Subscriptions.md

File metadata and controls

33 lines (24 loc) · 1.08 KB

Subscriptions

Listing object for subscriptions.

Properties

Name Type Description Notes
links Dict[str, Links] [optional]
bucket Bucket
subscriptions List[SubscriptionConfig]
warnings List[object] [optional]

Example

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)

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