Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 2.29 KB

RecurrenceRepetition.md

File metadata and controls

37 lines (28 loc) · 2.29 KB

RecurrenceRepetition

Properties

Name Type Description Notes
created_at datetime [optional] [readonly]
description str Auto-generated repetition description. [optional] [readonly]
id str [optional] [readonly]
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.
occurrences List[datetime] Array of future dates when the repetition will apply to. Auto generated. [optional] [readonly]
skip int How many occurrences to skip. 0 means skip nothing. 1 means every other. [optional]
type RecurrenceRepetitionType
updated_at datetime [optional] [readonly]
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 import RecurrenceRepetition

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

# convert the object into a dict
recurrence_repetition_dict = recurrence_repetition_instance.to_dict()
# create an instance of RecurrenceRepetition from a dict
recurrence_repetition_form_dict = recurrence_repetition.from_dict(recurrence_repetition_dict)

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