Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 952 Bytes

File metadata and controls

33 lines (24 loc) · 952 Bytes

Summary

Properties

Name Type Description Notes
amount float [optional]
currency str [optional]
is_null bool [optional]
timestamp int [optional]
value str [optional]

Example

from ibkr_web_api.models.summary import Summary

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

# convert the object into a dict
summary_dict = summary_instance.to_dict()
# create an instance of Summary from a dict
summary_from_dict = Summary.from_dict(summary_dict)

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