Skip to content

Latest commit

 

History

History
42 lines (33 loc) · 2 KB

Recurrence.md

File metadata and controls

42 lines (33 loc) · 2 KB

Recurrence

Properties

Name Type Description Notes
active bool If the recurrence is even active. [optional]
apply_rules bool Whether or not to fire the rules after the creation of a transaction. [optional]
created_at datetime [optional] [readonly]
description str Not to be confused with the description of the actual transaction(s) being created. [optional]
first_date date First time the recurring transaction will fire. Must be after today. [optional]
latest_date date Last time the recurring transaction has fired. [optional] [readonly]
notes str [optional]
nr_of_repetitions int Max number of created transactions. Use either this field or repeat_until. [optional]
repeat_until date Date until the recurring transaction can fire. Use either this field or repetitions. [optional]
repetitions List[RecurrenceRepetition] [optional]
title str [optional]
transactions List[RecurrenceTransaction] [optional]
type RecurrenceTransactionType [optional]
updated_at datetime [optional] [readonly]

Example

from firefly_iii_client.models.recurrence import Recurrence

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

# convert the object into a dict
recurrence_dict = recurrence_instance.to_dict()
# create an instance of Recurrence from a dict
recurrence_form_dict = recurrence.from_dict(recurrence_dict)

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