Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.07 KB

File metadata and controls

31 lines (22 loc) · 1.07 KB

PeerAdapterInfo

Properties

Name Type Description Notes
adapter_token_link_id str The token link id of the adapter
adapter_address str The adapter address
base_asset_id str The base asset id for the base asset that the adapter is deployed on

Example

from fireblocks.models.peer_adapter_info import PeerAdapterInfo

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

# convert the object into a dict
peer_adapter_info_dict = peer_adapter_info_instance.to_dict()
# create an instance of PeerAdapterInfo from a dict
peer_adapter_info_from_dict = PeerAdapterInfo.from_dict(peer_adapter_info_dict)

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