Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 793 Bytes

File metadata and controls

29 lines (20 loc) · 793 Bytes

Strategy

Properties

Name Type Description Notes
collateral str

Example

from lighter.models.strategy import Strategy

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

# convert the object into a dict
strategy_dict = strategy_instance.to_dict()
# create an instance of Strategy from a dict
strategy_from_dict = Strategy.from_dict(strategy_dict)

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