from moonsdk.models.nonce_api_response import NonceAPIResponse# TODO update the JSON string belowjson ="{}"# create an instance of NonceAPIResponse from a JSON stringnonce_api_response_instance = NonceAPIResponse.from_json(json)# print the JSON string representation of the objectprint(NonceAPIResponse.to_json())# convert the object into a dictnonce_api_response_dict = nonce_api_response_instance.to_dict()# create an instance of NonceAPIResponse from a dictnonce_api_response_form_dict = nonce_api_response.from_dict(nonce_api_response_dict)