Files
ritmex-bot/docs/lighter/lighter-python-main/docs/Fundings.md
T

910 B

Fundings

Properties

Name Type Description Notes
code int
message str [optional]
resolution str
fundings List[Funding]

Example

from lighter.models.fundings import Fundings

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

# convert the object into a dict
fundings_dict = fundings_instance.to_dict()
# create an instance of Fundings from a dict
fundings_from_dict = Fundings.from_dict(fundings_dict)

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