Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 757 Bytes

File metadata and controls

27 lines (19 loc) · 757 Bytes

Mongodb

Properties

Name Type Description Notes

Example

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)

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