Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 960 Bytes

File metadata and controls

32 lines (23 loc) · 960 Bytes

PublicPools

Properties

Name Type Description Notes
code int
message str [optional]
total int
public_pools List[PublicPool]

Example

from lighter.models.public_pools import PublicPools

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

# convert the object into a dict
public_pools_dict = public_pools_instance.to_dict()
# create an instance of PublicPools from a dict
public_pools_from_dict = PublicPools.from_dict(public_pools_dict)

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