Member Junction
    Preparing search index...
    SubscriptionResult: BaseMessageResult & {
        ExpiresAt?: Date;
        Result?: T;
        SubscriptionID?: string;
    }

    Result of creating or renewing a subscription.

    Type Parameters

    • T = Record<string, any>

    Type Declaration

    • OptionalExpiresAt?: Date

      When the subscription expires and must be renewed. undefined = never expires.

    • OptionalResult?: T

      If populated, holds provider-specific result data (matches the existing XResult<T> convention across this file).

    • OptionalSubscriptionID?: string

      The remote service's subscription ID. The consumer must persist this to renew or delete the subscription later.