INFTTransfer
Properties
Name
Type
Description
Notes
transaction_hash
str
contract
str
log_index
str
token_contract_type
str
token_name
str
token_symbol
str
operator
str
var_from
str
to
str
token_id
str
amount
str
Example
from moonsdk.models.inft_transfer import INFTTransfer
# TODO update the JSON string below
json = "{}"
# create an instance of INFTTransfer from a JSON string
inft_transfer_instance = INFTTransfer.from_json(json)
# print the JSON string representation of the object
print INFTTransfer.to_json()
# convert the object into a dict
inft_transfer_dict = inft_transfer_instance.to_dict()
# create an instance of INFTTransfer from a dict
inft_transfer_form_dict = inft_transfer.from_dict(inft_transfer_dict)
Last updated