Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 941 Bytes

RecurrenceSingle.md

File metadata and controls

29 lines (20 loc) · 941 Bytes

RecurrenceSingle

Properties

Name Type Description Notes
data RecurrenceRead

Example

from firefly_iii_client.models.recurrence_single import RecurrenceSingle

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

# convert the object into a dict
recurrence_single_dict = recurrence_single_instance.to_dict()
# create an instance of RecurrenceSingle from a dict
recurrence_single_form_dict = recurrence_single.from_dict(recurrence_single_dict)

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