Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 910 Bytes

File metadata and controls

32 lines (23 loc) · 910 Bytes

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]