Skip to content

Commit

Permalink
fixed events
Browse files Browse the repository at this point in the history
  • Loading branch information
Khaled Aldaoudieh committed Mar 3, 2021
1 parent b98a5f8 commit ef91fb5
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1 +1 @@
package me.grishka.houseclub.api.methods;import java.util.List;import me.grishka.houseclub.api.ClubhouseAPIRequest;import me.grishka.houseclub.api.model.Event;public class GetEvents extends ClubhouseAPIRequest<GetEvents.Response> { public GetEvents() { super("GET", "get_events", Response.class); } public static class Response { public List<Event> events; }}
package me.grishka.houseclub.api.methods;import java.util.List;import me.grishka.houseclub.api.ClubhouseAPIRequest;import me.grishka.houseclub.api.model.Event;public class GetEvents extends ClubhouseAPIRequest<GetEvents.Response> { public GetEvents(){ super("GET", "get_events", Response.class); } public static class Response{ public List<Event> events; }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,4 @@ public class Event{
public int eventId;
public boolean isMemberOnly;
public List<FullUser> hosts;
public boolean clubIsMember, clubIsFollower;
}

0 comments on commit ef91fb5

Please sign in to comment.