Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.26 KB

UpsertByKeyFromStorage200ResponseAnyOf.md

File metadata and controls

31 lines (22 loc) · 1.26 KB

UpsertByKeyFromStorage200ResponseAnyOf

Properties

Name Type Description Notes
error object [optional]
success bool
version str

Example

from monday_code.models.upsert_by_key_from_storage200_response_any_of import UpsertByKeyFromStorage200ResponseAnyOf

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

# convert the object into a dict
upsert_by_key_from_storage200_response_any_of_dict = upsert_by_key_from_storage200_response_any_of_instance.to_dict()
# create an instance of UpsertByKeyFromStorage200ResponseAnyOf from a dict
upsert_by_key_from_storage200_response_any_of_from_dict = UpsertByKeyFromStorage200ResponseAnyOf.from_dict(upsert_by_key_from_storage200_response_any_of_dict)

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