Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 946 Bytes

File metadata and controls

30 lines (21 loc) · 946 Bytes

LeaseOptionEntry

Properties

Name Type Description Notes
duration_days int
annual_rate float

Example

from lighter.models.lease_option_entry import LeaseOptionEntry

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

# convert the object into a dict
lease_option_entry_dict = lease_option_entry_instance.to_dict()
# create an instance of LeaseOptionEntry from a dict
lease_option_entry_from_dict = LeaseOptionEntry.from_dict(lease_option_entry_dict)

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