Files

1.1 KiB

RespGetIsNextBridgeFast

Properties

Name Type Description Notes
code int
message str [optional]
is_next_bridge_fast bool

Example

from lighter.models.resp_get_is_next_bridge_fast import RespGetIsNextBridgeFast

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

# convert the object into a dict
resp_get_is_next_bridge_fast_dict = resp_get_is_next_bridge_fast_instance.to_dict()
# create an instance of RespGetIsNextBridgeFast from a dict
resp_get_is_next_bridge_fast_from_dict = RespGetIsNextBridgeFast.from_dict(resp_get_is_next_bridge_fast_dict)

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