User Message Update Params
class UserMessageUpdateParams @JvmOverloads constructor(var message: String? = null) : BaseMessageUpdateParams
Represents a user message update params.
Since
3.0.52
See also
Properties
Link copied to clipboard
The custom type of the message. Defaults to null.
Link copied to clipboard
The message's mentioned message template of the message. Defaults to null.
Link copied to clipboard
The mentioned user ids of the message. Defaults to null.
Link copied to clipboard
The mentioned user of the message. Defaults to null.
Link copied to clipboard
The mention type of the message. Defaults to MentionType.USERS.
Functions
Link copied to clipboard
fun copy(message: String? = this.message, mentionedMessageTemplate: String? = this.mentionedMessageTemplate, data: String? = this.data, customType: String? = this.customType, mentionType: MentionType = this.mentionType, mentionedUserIds: List<String>? = this.mentionedUserIds, mentionedUsers: List<User>? = this.mentionedUsers): UserMessageUpdateParams