Erc721Response
Last updated
Last updated
from moonsdk.models.erc721_response import Erc721Response
# TODO update the JSON string below
json = "{}"
# create an instance of Erc721Response from a JSON string
erc721_response_instance = Erc721Response.from_json(json)
# print the JSON string representation of the object
print Erc721Response.to_json()
# convert the object into a dict
erc721_response_dict = erc721_response_instance.to_dict()
# create an instance of Erc721Response from a dict
erc721_response_form_dict = erc721_response.from_dict(erc721_response_dict)