Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.53 KB

File metadata and controls

30 lines (21 loc) · 1.53 KB

CheckLoopTransfers200ResponseInner

Properties

Name Type Description Notes
address str The wallet address. [optional]
is_loop bool Whether the transaction from the given source to the given destination address can be executed as a Cobo Loop transfer. - `true`: The transaction can be executed as a Cobo Loop transfer. - `false`: The transaction cannot be executed as a Cobo Loop transfer. [optional]

Example

from cobo_waas2.models.check_loop_transfers200_response_inner import CheckLoopTransfers200ResponseInner

# TODO update the JSON string below
json = "{}"
# create an instance of CheckLoopTransfers200ResponseInner from a JSON string
check_loop_transfers200_response_inner_instance = CheckLoopTransfers200ResponseInner.from_json(json)
# print the JSON string representation of the object
print(CheckLoopTransfers200ResponseInner.to_json())

# convert the object into a dict
check_loop_transfers200_response_inner_dict = check_loop_transfers200_response_inner_instance.to_dict()
# create an instance of CheckLoopTransfers200ResponseInner from a dict
check_loop_transfers200_response_inner_from_dict = CheckLoopTransfers200ResponseInner.from_dict(check_loop_transfers200_response_inner_dict)

[Back to Model list] [Back to API list] [Back to README]