from moonsdk.models.ping_response import PingResponse# TODO update the JSON string belowjson ="{}"# create an instance of PingResponse from a JSON stringping_response_instance = PingResponse.from_json(json)# print the JSON string representation of the objectprint(PingResponse.to_json())# convert the object into a dictping_response_dict = ping_response_instance.to_dict()# create an instance of PingResponse from a dictping_response_form_dict = ping_response.from_dict(ping_response_dict)