Erc20Response
Last updated
Last updated
from moonsdk.models.erc20_response import Erc20Response
# TODO update the JSON string below
json = "{}"
# create an instance of Erc20Response from a JSON string
erc20_response_instance = Erc20Response.from_json(json)
# print the JSON string representation of the object
print Erc20Response.to_json()
# convert the object into a dict
erc20_response_dict = erc20_response_instance.to_dict()
# create an instance of Erc20Response from a dict
erc20_response_form_dict = erc20_response.from_dict(erc20_response_dict)