-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
206 additions
and
9 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
7 changes: 7 additions & 0 deletions
7
...d/src/main/java/de/presti/ree6/backend/utils/data/container/api/CustomCommandRequest.java
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,11 @@ | ||
package de.presti.ree6.backend.utils.data.container.api; | ||
|
||
/** | ||
* Request for the Custom Command. | ||
* @param name Name of the Command. | ||
* @param message Message of the Command. | ||
* @param embedJson Embed of the Command. | ||
* @param channelId Channel ID of the Command. | ||
*/ | ||
public record CustomCommandRequest(String name, String message, String embedJson, String channelId) { | ||
} |
6 changes: 6 additions & 0 deletions
6
...src/main/java/de/presti/ree6/backend/utils/data/container/api/GenericNotifierRequest.java
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,10 @@ | ||
package de.presti.ree6.backend.utils.data.container.api; | ||
|
||
/** | ||
* Request for the Generic Notifier. | ||
* @param channelId Channel ID of the Notifier. | ||
* @param message Message of the Notifier. | ||
* @param name Name of the Notifier. | ||
*/ | ||
public record GenericNotifierRequest(String channelId, String message, String name) { | ||
} |
4 changes: 4 additions & 0 deletions
4
...nd/src/main/java/de/presti/ree6/backend/utils/data/container/api/GenericValueRequest.java
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,8 @@ | ||
package de.presti.ree6.backend.utils.data.container.api; | ||
|
||
/** | ||
* Request for the Generic Value. | ||
* @param value Value of the Value. | ||
*/ | ||
public record GenericValueRequest(String value) { | ||
} |
5 changes: 5 additions & 0 deletions
5
...d/src/main/java/de/presti/ree6/backend/utils/data/container/api/LevelAutoRoleRequest.java
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,9 @@ | ||
package de.presti.ree6.backend.utils.data.container.api; | ||
|
||
/** | ||
* Request for the Level Auto Role. | ||
* @param level Level of the Auto Role. | ||
* @param roleId Role ID of the Auto Role. | ||
*/ | ||
public record LevelAutoRoleRequest(long level, String roleId) { | ||
} |
7 changes: 7 additions & 0 deletions
7
...end/src/main/java/de/presti/ree6/backend/utils/data/container/api/PunishmentsRequest.java
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,11 @@ | ||
package de.presti.ree6.backend.utils.data.container.api; | ||
|
||
/** | ||
* Request for the Punishments. | ||
* @param neededWarnings Needed Warnings of the Punishments. | ||
* @param action Action of the Punishments. | ||
* @param roleId Role ID of the Punishments. | ||
* @param timeoutTime Timeout Time of the Punishments. | ||
*/ | ||
public record PunishmentsRequest(String neededWarnings, String action, String roleId, String timeoutTime) { | ||
} |
5 changes: 5 additions & 0 deletions
5
.../main/java/de/presti/ree6/backend/utils/data/container/api/ReactionRoleDeleteRequest.java
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,9 @@ | ||
package de.presti.ree6.backend.utils.data.container.api; | ||
|
||
/** | ||
* Request for the Reaction Role Delete. | ||
* @param messageId Message ID of the Reaction Role. | ||
* @param emojiId Emoji ID of the Reaction Role. | ||
*/ | ||
public record ReactionRoleDeleteRequest(String messageId, String emojiId) { | ||
} |
Oops, something went wrong.