Name |
Type |
Description |
Notes |
from monday_code.models.write_log_request_body_error import WriteLogRequestBodyError
# TODO update the JSON string below
json = "{}"
# create an instance of WriteLogRequestBodyError from a JSON string
write_log_request_body_error_instance = WriteLogRequestBodyError.from_json(json)
# print the JSON string representation of the object
print(WriteLogRequestBodyError.to_json())
# convert the object into a dict
write_log_request_body_error_dict = write_log_request_body_error_instance.to_dict()
# create an instance of WriteLogRequestBodyError from a dict
write_log_request_body_error_from_dict = WriteLogRequestBodyError.from_dict(write_log_request_body_error_dict)
[Back to Model list] [Back to API list] [Back to README]