-
Notifications
You must be signed in to change notification settings - Fork 13
Entrant
Brandon Cooke edited this page Aug 6, 2019
·
1 revision
An Entrant
is an Attendee
who entered and competed in an Event
.
This is the same as Entrant
in Smash.gg's context
Entrant(
id: number,
name: string,
eventId: number,
skill: number,
attendeeData: Attendee[]
)
-
id
- number,
-
name
- string,
-
eventId
- number,
-
skill
- number,
-
attendeeData
- Attendee[]
-
getId()
- get the numeric id of the Entrant
- returns number
-
getName()
- get the name of the Entrant
- returns string
-
getEventId()
- get the numeric identifier of the Event the Entrant is in
- returns number
-
getSkill()
- get the skill level of the Entrant
- returns number
-
getAttendeeData(position: number)
-
getAttendeeId(position: number)
-
getGamerTag(position: number)
-
getSponsor(position: number)
-
getPhoneNumber(position: number)
-
getContactInfo(position: number)
-
getCity(position: number)
-
getState(position: number)
-
getStateId(position: number)
-
getCountry(position: number)
-
getCountryId(position: number)
-
getName(position: number)
-
getFirstName(position: number)
-
getLastName(position: number)
-
getZipcode(position: number)
-
getConnectedAccounts()
- returns object | null
{
page?: number | null,
perPage?: number | null,
sortBy?: string | null,
filter?: null | {
id?: number,
entrantName?: string,
checkInState?: number,
phaseGroupId?: number[],
phaseId?: number[],
eventId?: number,
seach?:{
fieldsToSearch: string[],
searchString: string
}
}
}