Files
HidekoBot/src/main/java/wtf/beatrice/hidekobot/objects/MessageResponse.java
Beatrice Dellacà 8b2197b4f6
All checks were successful
continuous-integration/drone/push Build is passing
Fix missing JSON dependency
2022-12-24 14:48:17 +01:00

12 lines
391 B
Java

package wtf.beatrice.hidekobot.objects;
import net.dv8tion.jda.api.entities.MessageEmbed;
import net.dv8tion.jda.api.interactions.components.ItemComponent;
import org.jetbrains.annotations.Nullable;
public record MessageResponse(@Nullable String content,
@Nullable MessageEmbed embed,
@Nullable ItemComponent... components) {
}