You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The token ID of the transferred token. You can retrieve the IDs of all the tokens you can use by calling List enabled tokens. For transfers from Exchange Wallets, this property value represents the asset ID.
The sender's address. This property is required when using an EVM address in an MPC Wallet.
[optional]
Example
fromcobo_waas2.models.get_max_transferable_value_with_fee_model_requestimportGetMaxTransferableValueWithFeeModelRequest# TODO update the JSON string belowjson="{}"# create an instance of GetMaxTransferableValueWithFeeModelRequest from a JSON stringget_max_transferable_value_with_fee_model_request_instance=GetMaxTransferableValueWithFeeModelRequest.from_json(json)
# print the JSON string representation of the objectprint(GetMaxTransferableValueWithFeeModelRequest.to_json())
# convert the object into a dictget_max_transferable_value_with_fee_model_request_dict=get_max_transferable_value_with_fee_model_request_instance.to_dict()
# create an instance of GetMaxTransferableValueWithFeeModelRequest from a dictget_max_transferable_value_with_fee_model_request_from_dict=GetMaxTransferableValueWithFeeModelRequest.from_dict(get_max_transferable_value_with_fee_model_request_dict)