Sha256: 5e93a221010defabfff404120dde21c863db5ce43010c2150e624efcdac134f6

Contents?: true

Size: 823 Bytes

Versions: 4

Compression:

Stored size: 823 Bytes

Contents

# 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

```ruby
require 'synctera_ruby_sdk'

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

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
synctera_ruby_sdk-1.1.3 docs/ScheduleConfig.md
synctera_ruby_sdk-1.1.2 docs/ScheduleConfig.md
synctera_ruby_sdk-1.1.1 docs/ScheduleConfig.md
synctera_ruby_sdk-1.0.0 docs/ScheduleConfig.md