from moonsdk.models.cosmos_api_response import CosmosAPIResponse# TODO update the JSON string belowjson ="{}"# create an instance of CosmosAPIResponse from a JSON stringcosmos_api_response_instance = CosmosAPIResponse.from_json(json)# print the JSON string representation of the objectprint(CosmosAPIResponse.to_json())# convert the object into a dictcosmos_api_response_dict = cosmos_api_response_instance.to_dict()# create an instance of CosmosAPIResponse from a dictcosmos_api_response_form_dict = cosmos_api_response.from_dict(cosmos_api_response_dict)