SaveActivityReplyMutation is an interface representing the variables to save an activity reply. It includes the id of the activity, the activity id, the text of the activity reply, the locked status of the activity reply, and the status of the activity reply.

interface SaveActivityReplyVariables {
    activityId?: number;
    asHtml?: boolean;
    asMod?: boolean;
    id: number;
    text: string;
}

Properties

activityId?: number

activityId is a number representing the id of the activity.

asHtml?: boolean

asHtml is a boolean representing the status of the activity reply.

asMod?: boolean

asMod is a boolean representing the locked status of the activity reply.

id: number

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

text: string

text is a string representing the text of the activity reply.