@typed-discord/rest
    Preparing search index...

    Interface RecurrenceRule

    interface RecurrenceRule {
        by_month?: RecurrenceRuleMonths[] | null;
        by_month_day?: number[] | null;
        by_n_weekday?: ByNWeekday[] | null;
        by_weekday?: RecurrenceRuleWeekdays[] | null;
        by_year_day?: number[] | null;
        count?: number | null;
        end?: string | null;
        frequency: RecurrenceRuleFrequencies;
        interval?: number | null;
        start: string;
    }
    Index

    Properties

    by_month?: RecurrenceRuleMonths[] | null

    Set of specific months to recur on

    by_month_day?: number[] | null

    Set of specific dates within a month to recur on

    by_n_weekday?: ByNWeekday[] | null

    List of specific days within a specific week to recur on

    by_weekday?: RecurrenceRuleWeekdays[] | null

    Set of specific days within a week for the event to recur on

    by_year_day?: number[] | null

    Set of days within a year to recur on (1-364)

    count?: number | null

    Total number of times the event is allowed to recur

    end?: string | null

    Ending time of the recurrence interval

    How often the event occurs

    interval?: number | null

    The spacing between events, defined by frequency

    start: string

    Starting time of the recurrence interval