Packages

An Elixir client for Betradar's Unified Odds Feed (UOF) API

Current section

Files

Jump to
uof_api lib uof api mappings category.ex
Raw

lib/uof/api/mappings/category.ex

defmodule UOF.API.Mappings.Category do
@moduledoc false
use Saxaboom.Mapper
@type t :: %__MODULE__{
id: String.t(),
name: String.t(),
country_code: String.t()
}
document do
attribute(:id)
attribute(:name)
attribute(:country_code)
end
end