Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 770 Bytes

File metadata and controls

27 lines (19 loc) · 770 Bytes

Rabbitmq

Properties

Name Type Description Notes

Example

from timeweb_cloud_api.models.rabbitmq import Rabbitmq

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

# convert the object into a dict
rabbitmq_dict = rabbitmq_instance.to_dict()
# create an instance of Rabbitmq from a dict
rabbitmq_form_dict = rabbitmq.from_dict(rabbitmq_dict)

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