Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.26 KB

File metadata and controls

38 lines (29 loc) · 1.26 KB

PublicPoolInfo

Properties

Name Type Description Notes
status int
operator_fee str
min_operator_share_rate str
total_shares int
operator_shares int
annual_percentage_yield float
sharpe_ratio float
daily_returns List[DailyReturn]
share_prices List[SharePrice]
strategies List[Strategy]

Example

from lighter.models.public_pool_info import PublicPoolInfo

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

# convert the object into a dict
public_pool_info_dict = public_pool_info_instance.to_dict()
# create an instance of PublicPoolInfo from a dict
public_pool_info_from_dict = PublicPoolInfo.from_dict(public_pool_info_dict)

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