2024-05-01 12:07:07 +02:00

21 lines
563 B
Elixir

defmodule Scrapper.Data.Model.Match.Info do
alias Scrapper.Data.Model.Match.Participant
defstruct endOfGameResult: "",
gameCreation: "",
gameDuration: "",
gameEndTimestamp: "",
gameId: "",
gameMode: "",
gameName: "",
gameStartTimestamp: "",
gameType: "",
gameVersion: "",
mapId: "",
participants: [%Participant{}],
platformId: "",
queueId: "",
teams: "",
tournamentCode: ""
end