Packages
The Prop Odds API allows you to query player and game prop odds from different bookies.
Current section
Files
Jump to
Current section
Files
lib/prop_odds_api/model/participant.ex
defmodule PropOddsAPI.Model.Participant do
@moduledoc """
"""
@derive Jason.Encoder
defstruct [
:participant_id,
:name
]
@type t :: %__MODULE__{
:participant_id => integer(),
:name => String.t
}
def decode(value) do
value
end
end