Represents a recurrence policy that defines a schedule for recurring orders.

interface RecurrencePolicy {
    createdAt: string;
    createdBy?: CreatedBy;
    description?: LocalizedString;
    id: string;
    key?: string;
    lastModifiedAt: string;
    lastModifiedBy?: LastModifiedBy;
    name?: LocalizedString;
    schedule: RecurrencePolicySchedule;
    version: number;
}

Hierarchy (View Summary)

Properties

createdAt: string
createdBy?: CreatedBy

IDs and references that created the RecurrencePolicy.

description?: LocalizedString

Description of the RecurrencePolicy.

id: string

Unique identifier of the RecurrencePolicy.

key?: string

User-defined unique identifier for the RecurrencePolicy.

lastModifiedAt: string
lastModifiedBy?: LastModifiedBy

IDs and references that last modified the RecurrencePolicy.

Name of the RecurrencePolicy.

Schedule of the RecurrencePolicy.

version: number

Current version of the RecurrencePolicy.