You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Information that defined the type of repetition. - For 'daily', this is empty. - For 'weekly', it is day of the week between 1 and 7 (Monday - Sunday). - For 'ndom', it is '1,2' or '4,5' or something else, where the first number is the week in the month, and the second number is the day in the week (between 1 and 7). '2,3' means: the 2nd Wednesday of the month - For 'monthly' it is the day of the month (1 - 31) - For yearly, it is a full date, ie '2018-09-17'. The year you use does not matter.
skip
int
How many occurrences to skip. 0 means skip nothing. 1 means every other.
How to respond when the recurring transaction falls in the weekend. Possible values: 1. Do nothing, just create it 2. Create no transaction. 3. Skip to the previous Friday. 4. Skip to the next Monday.
[optional]
Example
fromfirefly_iii_client.models.recurrence_repetition_storeimportRecurrenceRepetitionStore# TODO update the JSON string belowjson="{}"# create an instance of RecurrenceRepetitionStore from a JSON stringrecurrence_repetition_store_instance=RecurrenceRepetitionStore.from_json(json)
# print the JSON string representation of the objectprint(RecurrenceRepetitionStore.to_json())
# convert the object into a dictrecurrence_repetition_store_dict=recurrence_repetition_store_instance.to_dict()
# create an instance of RecurrenceRepetitionStore from a dictrecurrence_repetition_store_form_dict=recurrence_repetition_store.from_dict(recurrence_repetition_store_dict)