from moonsdk.models.inft_approval import INFTApproval
# TODO update the JSON string below
json = "{}"
# create an instance of INFTApproval from a JSON string
inft_approval_instance = INFTApproval.from_json(json)
# print the JSON string representation of the object
print INFTApproval.to_json()
# convert the object into a dict
inft_approval_dict = inft_approval_instance.to_dict()
# create an instance of INFTApproval from a dict
inft_approval_form_dict = inft_approval.from_dict(inft_approval_dict)