Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 904 Bytes

File metadata and controls

30 lines (21 loc) · 904 Bytes

ExecuteStat

Properties

Name Type Description Notes
timestamp int
slippage List[SlippageResult]

Example

from lighter.models.execute_stat import ExecuteStat

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

# convert the object into a dict
execute_stat_dict = execute_stat_instance.to_dict()
# create an instance of ExecuteStat from a dict
execute_stat_from_dict = ExecuteStat.from_dict(execute_stat_dict)

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