AniLink - v1.29.2
    Preparing search index...

    ToggleThreadSubscriptionVariables is an interface representing the variables to subscribe to a thread. It includes threadId and subscribe.

    interface ToggleThreadSubscriptionVariables {
        asHtml?: boolean;
        subscribe: boolean;
        threadId: number;
    }
    Index
    asHtml?: boolean

    asHtml is a boolean representing whether the activity descriptions is in HTML format.

    subscribe: boolean

    subscribe is a boolean representing whether the activity is subscribed.

    threadId: number

    threadId is a number representing the id of the thread.