ENUM

CompetitionAutomodField

Enum for fields passing through automod.

link GraphQL Schema definition

1enum CompetitionAutomodField {
2
3# Competition name.
4COMPETITION_NAME
5
6# Public contact info discord URL.
7PCI_DISCORD
8
9# Public contact info email.
10PCI_EMAIL
11
12# Participant only contact info discord URL.
13POCI_DISCORD
14
15# Participant only contact info email.
16POCI_EMAIL
17
18# Competition image URL.
19IMAGE_URL
20
21# Competition banner image URL.
22BANNER_IMAGE_URL
23
24# Terms URL.
25TERMS_URL
26
27# Competition description.
28DESCRIPTION
29
30# Competition rules description.
31RULES
32
33# Competition prize description.
34PRIZE
35
36# Player discord username.
37PLAYER_DISCORD_USERNAME
38
39# Player in game username.
40PLAYER_IN_GAME_USERNAME
41
42# Team name.
43TEAM_NAME
44
45# Used when the field is unknown.
46UNKNOWN
47}