| Name | Type | Description | Notes |
|---|---|---|---|
| collateral | str |
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)