Interface ScheduledRefresh

Represents a scheduled refresh for a subscription

interface ScheduledRefresh {
    completed: boolean;
    id: string;
    inProgress: boolean;
    reason: string;
    scheduledAt: number;
    subscriptionId: string;
}

Properties

completed: boolean

Whether the refresh has been completed

id: string

Unique identifier for the scheduled refresh

inProgress: boolean

Whether the refresh is currently in progress

reason: string

Reason for the scheduled refresh

scheduledAt: number

Date and time of the scheduled refresh

subscriptionId: string

Unique identifier for the subscription