AbiItem
Properties
Name
Type
Description
Notes
Example
from moonsdk.models.abi_item import AbiItem
# TODO update the JSON string below
json = "{}"
# create an instance of AbiItem from a JSON string
abi_item_instance = AbiItem.from_json(json)
# print the JSON string representation of the object
print AbiItem.to_json()
# convert the object into a dict
abi_item_dict = abi_item_instance.to_dict()
# create an instance of AbiItem from a dict
abi_item_form_dict = abi_item.from_dict(abi_item_dict)Last updated