Skip to content

Commit

Permalink
Update docs for Message.Interaction.name
Browse files Browse the repository at this point in the history
  • Loading branch information
lukellmann committed Jul 5, 2022
1 parent 0038200 commit 71b185e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion core/src/main/kotlin/entity/Message.kt
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,10 @@ public class Message(
/** [Id][ActionInteraction.id] of the [ActionInteraction] this message is responding to. */
override val id: Snowflake get() = data.id

/** The [name][ApplicationCommand.name] of the [ApplicationCommand] that triggered this message. */
/**
* The [name][ApplicationCommand.name] of the [ApplicationCommand] that triggered this message.
* This name includes subcommands and subcommand groups.
*/
public val name: String get() = data.name

/** The [UserBehavior] of the [user][ActionInteraction.user] who invoked the [ActionInteraction]. */
Expand Down

0 comments on commit 71b185e

Please sign in to comment.