SaveTextActivityMutation is an interface representing the variables to save a text activity. It includes the activity id, text, and locked status.

interface SaveTextActivityVariables {
    id: number;
    locked?: boolean;
    text?: string;
}

Properties

Properties

id: number

id is a number representing the id of the activity.

locked?: boolean

locked is a boolean representing whether the activity is locked.

text?: string

text is a string representing the text of the activity.