File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed
Java/src/main/java/net/hypixel/api/reply Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ public static class Guild {
26
26
private String name ;
27
27
private String description ;
28
28
private String tag ;
29
+ private String tagColor ;
29
30
private Boolean publiclyListed ;
30
31
private Banner banner ;
31
32
private List <Member > members ;
@@ -52,6 +53,10 @@ public String getTag() {
52
53
return tag ;
53
54
}
54
55
56
+ public String getTagColor () {
57
+ return tagColor ;
58
+ }
59
+
55
60
public Boolean getPubliclyListed () {
56
61
return publiclyListed ;
57
62
}
@@ -95,6 +100,7 @@ public String toString() {
95
100
", name='" + name + '\'' +
96
101
", description='" + description + '\'' +
97
102
", tag='" + tag + '\'' +
103
+ ", tagColor='" + tagColor + '\'' +
98
104
", publiclyListed=" + publiclyListed +
99
105
", banner=" + banner +
100
106
", members=" + members +
You can’t perform that action at this time.
0 commit comments