Created
April 14, 2023 23:02
-
-
Save NotArchon/d2734dd4e8046f051d9337d124694343 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package io.archon.discord.api.interactions; | |
| import com.google.gson.annotations.SerializedName; | |
| public record ApplicationCommand(String id, String name, int type, Object resolved, Object options, | |
| @SerializedName("guild_id") String guildId, | |
| @SerializedName("target_id") String targetId) { | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment