Schedule of a RecurringOrder that occurs at a fixed interval—for example, every two weeks or every month.

interface StandardSchedule {
    intervalUnit: IntervalUnit;
    type: "standard";
    value: number;
}

Hierarchy (View Summary)

Properties

intervalUnit: IntervalUnit

Interval of this schedule.

type: "standard"
value: number

Number of intervals between orders.