Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.98 KB

RecurrenceRepetitionStore.md

File metadata and controls

32 lines (23 loc) · 1.98 KB

RecurrenceRepetitionStore

Properties

Name Type Description Notes
moment str 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. [optional]
type RecurrenceRepetitionType
weekend int 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

from firefly_iii_client.models.recurrence_repetition_store import RecurrenceRepetitionStore

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

# convert the object into a dict
recurrence_repetition_store_dict = recurrence_repetition_store_instance.to_dict()
# create an instance of RecurrenceRepetitionStore from a dict
recurrence_repetition_store_form_dict = recurrence_repetition_store.from_dict(recurrence_repetition_store_dict)

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