Name |
Type |
Description |
Notes |
version |
str |
|
[optional] |
value |
object |
|
|
from monday_code.models.storage_data_contract import StorageDataContract
# TODO update the JSON string below
json = "{}"
# create an instance of StorageDataContract from a JSON string
storage_data_contract_instance = StorageDataContract.from_json(json)
# print the JSON string representation of the object
print(StorageDataContract.to_json())
# convert the object into a dict
storage_data_contract_dict = storage_data_contract_instance.to_dict()
# create an instance of StorageDataContract from a dict
storage_data_contract_from_dict = StorageDataContract.from_dict(storage_data_contract_dict)
[Back to Model list] [Back to API list] [Back to README]