Skip to content

Latest commit

 

History

History
37 lines (30 loc) · 1.45 KB

ScheduledTransactionDetail.md

File metadata and controls

37 lines (30 loc) · 1.45 KB

ScheduledTransactionDetail

Properties

Name Type Description Notes
id String
dateFirst LocalDate The first date for which the Scheduled Transaction was scheduled.
dateNext LocalDate The next date for which the Scheduled Transaction is scheduled.
frequency FrequencyEnum
amount BigDecimal The scheduled transaction amount in milliunits format
accountId String
deleted Boolean Whether or not the scheduled transaction has been deleted. Deleted scheduled transactions will only be included in delta requests.
accountName String
subtransactions List<ScheduledSubTransaction> If a split scheduled transaction, the subtransactions.

Enum: FrequencyEnum

Name Value
NEVER "never"
DAILY "daily"
WEEKLY "weekly"
EVERYOTHERWEEK "everyOtherWeek"
TWICEAMONTH "twiceAMonth"
EVERY4WEEKS "every4Weeks"
MONTHLY "monthly"
EVERYOTHERMONTH "everyOtherMonth"
EVERY3MONTHS "every3Months"
EVERY4MONTHS "every4Months"
TWICEAYEAR "twiceAYear"
YEARLY "yearly"
EVERYOTHERYEAR "everyOtherYear"