Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1009 Bytes

File metadata and controls

30 lines (21 loc) · 1009 Bytes

RespGetExecuteStats

Properties

Name Type Description Notes
period str
result List[ExecuteStat]

Example

from lighter.models.resp_get_execute_stats import RespGetExecuteStats

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

# convert the object into a dict
resp_get_execute_stats_dict = resp_get_execute_stats_instance.to_dict()
# create an instance of RespGetExecuteStats from a dict
resp_get_execute_stats_from_dict = RespGetExecuteStats.from_dict(resp_get_execute_stats_dict)

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