Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 1.22 KB

ScheduleConfig.md

File metadata and controls

28 lines (22 loc) · 1.22 KB

Synctera::ScheduleConfig

Properties

Name Type Description Notes
count Integer Number of times to recur. Exactly one of end_date or count must be provided [optional]
end_date Date End date of the schedule (exclusive). Exactly one of end_date or count must be provided [optional]
frequency String
interval Integer Interval between recurrences, e.g. interval = 2 with frequency = WEEKLY means every other week.
start_date Date Start date of the schedule (inclusive)
start_search String start_search determines the direction of the search for a start date that falls on a banking day. If 'BACKWARD' is selected, the search begins from the specified start date and checks each preceding day, up to a month. Conversely, if 'FORWARD' is selected, the search commences from the specified start date and checks each subsequent day, for up to a month. [optional]

Example

require 'synctera'

instance = Synctera::ScheduleConfig.new(
  count: null,
  end_date: null,
  frequency: null,
  interval: null,
  start_date: null,
  start_search: null
)