mirror of
https://github.com/discountry/ritmex-bot.git
synced 2026-09-09 08:18:07 +00:00
1.0 KiB
1.0 KiB
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)