| Name | Type | Description | Notes |
|---|
from timeweb_cloud_api.models.mongodb import Mongodb
# TODO update the JSON string below
json = "{}"
# create an instance of Mongodb from a JSON string
mongodb_instance = Mongodb.from_json(json)
# print the JSON string representation of the object
print Mongodb.to_json()
# convert the object into a dict
mongodb_dict = mongodb_instance.to_dict()
# create an instance of Mongodb from a dict
mongodb_form_dict = mongodb.from_dict(mongodb_dict)