Packages

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

Current section

Files

Jump to
uof_api lib uof api mappings betstop_reason.ex
Raw

lib/uof/api/mappings/betstop_reason.ex

defmodule UOF.API.Mappings.BetStopReason do
@moduledoc false
use Saxaboom.Mapper
@type t :: %__MODULE__{
id: integer,
description: String.t()
}
document do
attribute(:id, cast: :integer)
attribute(:description)
end
end