Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.04 KB

File metadata and controls

35 lines (26 loc) · 1.04 KB

PositionFunding

Properties

Name Type Description Notes
timestamp int
market_id int
funding_id int
change str
rate str
position_size str
position_side str

Example

from lighter.models.position_funding import PositionFunding

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

# convert the object into a dict
position_funding_dict = position_funding_instance.to_dict()
# create an instance of PositionFunding from a dict
position_funding_from_dict = PositionFunding.from_dict(position_funding_dict)

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