Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.03 KB

File metadata and controls

31 lines (22 loc) · 1.03 KB

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)

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