Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.01 KB

File metadata and controls

31 lines (22 loc) · 1.01 KB

BridgeSupportedNetwork

Properties

Name Type Description Notes
name str
chain_id str
explorer str

Example

from lighter.models.bridge_supported_network import BridgeSupportedNetwork

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

# convert the object into a dict
bridge_supported_network_dict = bridge_supported_network_instance.to_dict()
# create an instance of BridgeSupportedNetwork from a dict
bridge_supported_network_from_dict = BridgeSupportedNetwork.from_dict(bridge_supported_network_dict)

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