Advertisement
agend

Untitled

Dec 12th, 2019
550
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Go 1.11 KB | None | 0 0
  1. type AutoGenerated struct {
  2.     Sets []struct {
  3.         ID            string    `json:"id"`
  4.         Identifier    string    `json:"identifier"`
  5.         PhaseGroupID  int       `json:"phaseGroupId"`
  6.         Round         int       `json:"round"`
  7.         State         int       `json:"state"`
  8.         FullRoundText string    `json:"fullRoundText"`
  9.         WinnerID      int       `json:"winnerId"`
  10.         WPlacement    int       `json:"wPlacement"`
  11.         LPlacement    int       `json:"lPlacement"`
  12.         TotalGames    int       `json:"totalGames"`
  13.         SetGamesType  int       `json:"setGamesType"`
  14.         StartedAt     time.Time `json:"startedAt"`
  15.         CreatedAt     time.Time `json:"createdAt"`
  16.         CompletedAt   time.Time `json:"completedAt"`
  17.         Slots         []struct {
  18.             Standing struct {
  19.                 Placement int `json:"placement"`
  20.                 Entrant   struct {
  21.                     ID int `json:"id"`
  22.                 } `json:"entrant"`
  23.                 Stats struct {
  24.                     Score struct {
  25.                         Label        string `json:"label"`
  26.                         Value        int    `json:"value"`
  27.                         DisplayValue string `json:"displayValue"`
  28.                     } `json:"score"`
  29.                 } `json:"stats"`
  30.             } `json:"standing"`
  31.         } `json:"slots"`
  32.     } `json:"sets"`
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement