AniLink - v1.29.2
    Preparing search index...

    SaveMessageActivityMutation is an interface representing the variables to save a message activity. It includes the activity id, message, recipient id, private, locked, asMod, and asHtml.

    interface SaveMessageActivityVariables {
        asHtml?: boolean;
        asMod?: boolean;
        id: number;
        locked?: boolean;
        message?: string;
        private?: boolean;
        recipientId?: number;
    }
    Index
    asHtml?: boolean

    asHtml is a boolean representing whether the description in the return response is in HTML format.

    asMod?: boolean

    asMod is a boolean representing whether the activity is saved as a moderator.

    id: number

    id is a number representing the id of the activity.

    locked?: boolean

    locked is a boolean representing whether the message is locked.

    message?: string

    message is a string representing the message.

    private?: boolean

    private is a boolean representing whether the message is private.

    recipientId?: number

    recipientId is a number representing the id of the recipient.