Class EntrantResponse
- java.lang.Object
-
- com.github.gpluscb.ggjava.entity.AbstractGGEntity
-
- com.github.gpluscb.ggjava.entity.object.AbstractGGObject
-
- com.github.gpluscb.ggjava.entity.object.response.AbstractGGResponseObject
-
- com.github.gpluscb.ggjava.entity.object.response.objects.EntrantResponse
-
- All Implemented Interfaces:
GGEntity,GGObject,GGResponseObject
public class EntrantResponse extends AbstractGGResponseObject
An entrant in an event
-
-
Constructor Summary
Constructors Constructor Description EntrantResponse()EntrantResponse(IDResponse id, EventResponse event, BooleanResponse isDisqualified, StringResponse name, SetConnectionResponse paginatedSets, ListResponse<ParticipantResponse> participants, ListResponse<SeedResponse> seeds, IntResponse skill, StandingResponse standing, StreamsResponse stream, ListResponse<StreamsResponse> streams, TeamResponse team)
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description EventResponsegetEvent()IDResponsegetId()BooleanResponsegetIsDisqualified()StringResponsegetName()The entrant name as it appears in bracket: gamerTag of the participant or team nameSetConnectionResponsegetPaginatedSets()Paginated sets for this entrantListResponse<ParticipantResponse>getParticipants()ListResponse<SeedResponse>getSeeds()IntResponsegetSkill()StandingResponsegetStanding()Standing for this entrant given an event.StreamsResponsegetStream()Deprecated.DEPRECATED.ListResponse<StreamsResponse>getStreams()TeamResponsegetTeam()Team linked to this entrant, if one exists-
Methods inherited from class com.github.gpluscb.ggjava.entity.object.response.AbstractGGResponseObject
checkProvided, isProvided
-
Methods inherited from class com.github.gpluscb.ggjava.entity.AbstractGGEntity
getGGEntityType
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.github.gpluscb.ggjava.entity.GGEntity
getGGEntityType
-
-
-
-
Constructor Detail
-
EntrantResponse
public EntrantResponse()
-
EntrantResponse
public EntrantResponse(IDResponse id, EventResponse event, BooleanResponse isDisqualified, StringResponse name, SetConnectionResponse paginatedSets, ListResponse<ParticipantResponse> participants, ListResponse<SeedResponse> seeds, IntResponse skill, StandingResponse standing, StreamsResponse stream, ListResponse<StreamsResponse> streams, TeamResponse team)
-
-
Method Detail
-
getId
public IDResponse getId()
-
getEvent
public EventResponse getEvent()
-
getIsDisqualified
public BooleanResponse getIsDisqualified()
-
getName
public StringResponse getName()
The entrant name as it appears in bracket: gamerTag of the participant or team name
-
getPaginatedSets
public SetConnectionResponse getPaginatedSets()
Paginated sets for this entrant
-
getParticipants
public ListResponse<ParticipantResponse> getParticipants()
-
getSeeds
public ListResponse<SeedResponse> getSeeds()
-
getSkill
public IntResponse getSkill()
-
getStanding
public StandingResponse getStanding()
Standing for this entrant given an event. All entrants queried must be in the same event (for now).
-
getStream
@Deprecated public StreamsResponse getStream()
Deprecated.DEPRECATED. Use streams instead, which supports multiple stream types and teams.
-
getStreams
public ListResponse<StreamsResponse> getStreams()
-
getTeam
public TeamResponse getTeam()
Team linked to this entrant, if one exists
-
-