33/**
44 * Represents one webhook entry under a reward's "Webhooks:" list.
55 *
6- * <p> Two payload styles:
6+ * Two payload styles:
77 * <ul>
8- * <li>Raw JSON: {@link #getJson()}</li>
9- * <li>Discord convenience payload: content + optional embed fields</li>
8+ * <li>Raw JSON: {@link #getJson()}</li>
9+ * <li>Discord convenience payload: content + optional embed fields</li>
1010 * </ul>
11- * </p>
11+ *
1212 *
13- * <p> All fields may contain placeholders and are expanded at execution time.</p>
13+ * All fields may contain placeholders and are expanded at execution time.
1414 */
1515public final class WebhookRewardEntry {
1616
@@ -34,19 +34,20 @@ public final class WebhookRewardEntry {
3434 /**
3535 * Creates a reward entry.
3636 *
37- * @param webhookId webhook definition id
38- * @param json raw json payload (nullable)
39- * @param content discord content (nullable)
40- * @param embedEnabled embed enabled
41- * @param embedTitle embed title
42- * @param embedDescription embed description
43- * @param embedColorHex hex color #RRGGBB (nullable)
37+ * @param webhookId webhook definition id
38+ * @param json raw json payload (nullable)
39+ * @param content discord content (nullable)
40+ * @param embedEnabled embed enabled
41+ * @param embedTitle embed title
42+ * @param embedDescription embed description
43+ * @param embedColorHex hex color #RRGGBB (nullable)
4444 * @param embedThumbnailUrl thumbnail url (nullable)
45- * @param footerEnabled footer enabled
46- * @param footerText footer text (nullable)
45+ * @param footerEnabled footer enabled
46+ * @param footerText footer text (nullable)
4747 */
4848 public WebhookRewardEntry (String webhookId , String json , String content , boolean embedEnabled , String embedTitle ,
49- String embedDescription , String embedColorHex , String embedThumbnailUrl , boolean footerEnabled , String footerText ) {
49+ String embedDescription , String embedColorHex , String embedThumbnailUrl , boolean footerEnabled ,
50+ String footerText ) {
5051 this .webhookId = webhookId ;
5152 this .json = json ;
5253 this .content = content ;
0 commit comments