Files
ritmex-bot/docs/lighter/lighter-python-main/docs/ReqGetBridgesByL1Addr.md
T

992 B

ReqGetBridgesByL1Addr

Properties

Name Type Description Notes
l1_address str

Example

from lighter.models.req_get_bridges_by_l1_addr import ReqGetBridgesByL1Addr

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

# convert the object into a dict
req_get_bridges_by_l1_addr_dict = req_get_bridges_by_l1_addr_instance.to_dict()
# create an instance of ReqGetBridgesByL1Addr from a dict
req_get_bridges_by_l1_addr_from_dict = ReqGetBridgesByL1Addr.from_dict(req_get_bridges_by_l1_addr_dict)

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