@@ -7,9 +7,10 @@ public class Member {
77 private final long join_date , last_activity_date ;
88 private final boolean banned , suspended , restricted , disabled , premium , supreme , ultimate ;
99 private final long discord_id ;
10+ private final String avatar_url ;
1011 private final int post_count , resource_count , purchase_count , feedback_positive , feedback_neutral , feedback_negative ;
1112
12- public Member (int member_id , String username , long join_date , long last_activity_date , boolean banned , boolean suspended , boolean restricted , boolean disabled , boolean premium , boolean supreme , boolean ultimate , long discord_id , int post_count , int resource_count , int purchase_count , int feedback_positive , int feedback_neutral , int feedback_negative ) {
13+ public Member (int member_id , String username , long join_date , long last_activity_date , boolean banned , boolean suspended , boolean restricted , boolean disabled , boolean premium , boolean supreme , boolean ultimate , long discord_id , String avatar_url , int post_count , int resource_count , int purchase_count , int feedback_positive , int feedback_neutral , int feedback_negative ) {
1314 this .member_id = member_id ;
1415 this .username = username ;
1516 this .join_date = join_date ;
@@ -22,6 +23,7 @@ public Member(int member_id, String username, long join_date, long last_activity
2223 this .supreme = supreme ;
2324 this .ultimate = ultimate ;
2425 this .discord_id = discord_id ;
26+ this .avatar_url = avatar_url ;
2527 this .post_count = post_count ;
2628 this .resource_count = resource_count ;
2729 this .purchase_count = purchase_count ;
@@ -78,6 +80,10 @@ public long getDiscordId() {
7880 return discord_id ;
7981 }
8082
83+ public String getAvatarURL () {
84+ return avatar_url ;
85+ }
86+
8187 public int getPostCount () {
8288 return post_count ;
8389 }
0 commit comments