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;
}

Properties

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.