Defines how the next orders are going to be skipped.

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

Properties

lastSkippedAt?: string

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

skipped: number

Amount of orders that were already skipped.

totalToSkip: number

Amount of orders that are going to be skipped.

type: "counter"

Type of skip configuration.