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] |
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. | |
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. | |
repetitions | List[RecurrenceRepetitionStore] | ||
title | str | ||
transactions | List[RecurrenceTransactionStore] | ||
type | RecurrenceTransactionType |
from firefly_iii_client.models.recurrence_store import RecurrenceStore
# TODO update the JSON string below
json = "{}"
# create an instance of RecurrenceStore from a JSON string
recurrence_store_instance = RecurrenceStore.from_json(json)
# print the JSON string representation of the object
print(RecurrenceStore.to_json())
# convert the object into a dict
recurrence_store_dict = recurrence_store_instance.to_dict()
# create an instance of RecurrenceStore from a dict
recurrence_store_form_dict = recurrence_store.from_dict(recurrence_store_dict)