Configuration to track skips for a RecurringOrder.

interface Counter {
    lastSkippedAt?: string;
    skipped: number;
    totalToSkip: number;
    type: "counter";
}

Hierarchy (View Summary)

Properties

lastSkippedAt?: string

Date and time (UTC) when the last Order creation was skipped.

skipped: number

Number of Orders that were already skipped.

totalToSkip: number

Number of Orders that will be skipped.

type: "counter"