from loko_client.models.transfer_with_native_token import TransferWithNativeToken
# TODO update the JSON string below
json = "{}"
# create an instance of TransferWithNativeToken from a JSON string
transfer_with_native_token_instance = TransferWithNativeToken.from_json(json)
# print the JSON string representation of the object
print(TransferWithNativeToken.to_json())
# convert the object into a dict
transfer_with_native_token_dict = transfer_with_native_token_instance.to_dict()
# create an instance of TransferWithNativeToken from a dict
transfer_with_native_token_from_dict = TransferWithNativeToken.from_dict(transfer_with_native_token_dict)