from moonsdk.models.nonce_response import NonceResponse# TODO update the JSON string belowjson ="{}"# create an instance of NonceResponse from a JSON stringnonce_response_instance = NonceResponse.from_json(json)# print the JSON string representation of the objectprint(NonceResponse.to_json())# convert the object into a dictnonce_response_dict = nonce_response_instance.to_dict()# create an instance of NonceResponse from a dictnonce_response_form_dict = nonce_response.from_dict(nonce_response_dict)