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