Erc1155Response
Last updated
Last updated
from moonsdk.models.erc1155_response import Erc1155Response
# TODO update the JSON string below
json = "{}"
# create an instance of Erc1155Response from a JSON string
erc1155_response_instance = Erc1155Response.from_json(json)
# print the JSON string representation of the object
print Erc1155Response.to_json()
# convert the object into a dict
erc1155_response_dict = erc1155_response_instance.to_dict()
# create an instance of Erc1155Response from a dict
erc1155_response_form_dict = erc1155_response.from_dict(erc1155_response_dict)