AniLink - v1.29.2
    Preparing search index...

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

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

    asHtml is a boolean representing whether the activity text is returned as HTML.

    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.