AniLink - v1.29.2
    Preparing search index...

    ActivityRepliesVariables is an interface representing the variables for the ActivityRepliesQuery. It includes optional page, per page, id, activity id, and as html.

    interface ActivityRepliesVariables {
        activityId?: number;
        asHtml?: boolean;
        id?: number;
        page?: number;
        perPage?: 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.

    page?: number

    page is a number representing the page number.

    perPage?: number

    perPage is a number representing the number of items per page.