AniLink - v1.29.2
    Preparing search index...

    ActivityReplyVariables is an interface representing the variables for the ActivityReplyQuery. It includes optional id, activityId, and asHtml.

    interface ActivityReplyVariables {
        activityId?: number;
        asHtml?: boolean;
        id: number;
    }
    Index
    activityId?: number

    activityId is a number representing the id of the activity.

    asHtml?: boolean

    asHtml is a boolean representing whether to return the result as HTML.

    id: number

    id is a number representing the id of the activity reply.