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

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

Properties

asHtml?: boolean

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

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.