mirror of
https://github.com/discountry/ritmex-bot.git
synced 2026-09-09 16:28:06 +00:00
1.0 KiB
1.0 KiB
RespGetFastBridgeInfo
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| code | int | ||
| message | str | [optional] | |
| fast_bridge_limit | str |
Example
from lighter.models.resp_get_fast_bridge_info import RespGetFastBridgeInfo
# TODO update the JSON string below
json = "{}"
# create an instance of RespGetFastBridgeInfo from a JSON string
resp_get_fast_bridge_info_instance = RespGetFastBridgeInfo.from_json(json)
# print the JSON string representation of the object
print(RespGetFastBridgeInfo.to_json())
# convert the object into a dict
resp_get_fast_bridge_info_dict = resp_get_fast_bridge_info_instance.to_dict()
# create an instance of RespGetFastBridgeInfo from a dict
resp_get_fast_bridge_info_from_dict = RespGetFastBridgeInfo.from_dict(resp_get_fast_bridge_info_dict)