SyncteraRubySdk::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)

Example

require 'synctera_ruby_sdk'

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