Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1016 Bytes

File metadata and controls

31 lines (22 loc) · 1016 Bytes

RecurrenceArray

Properties

Name Type Description Notes
data List[RecurrenceRead]
links PageLink
meta Meta

Example

from firefly_iii_client.models.recurrence_array import RecurrenceArray

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

# convert the object into a dict
recurrence_array_dict = recurrence_array_instance.to_dict()
# create an instance of RecurrenceArray from a dict
recurrence_array_from_dict = RecurrenceArray.from_dict(recurrence_array_dict)

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