from pyst_client.models.correspondence_input import CorrespondenceInput
# TODO update the JSON string below
json = "{}"
# create an instance of CorrespondenceInput from a JSON string
correspondence_input_instance = CorrespondenceInput.from_json(json)
# print the JSON string representation of the object
print(CorrespondenceInput.to_json())
# convert the object into a dict
correspondence_input_dict = correspondence_input_instance.to_dict()
# create an instance of CorrespondenceInput from a dict
correspondence_input_from_dict = CorrespondenceInput.from_dict(correspondence_input_dict)