Current section
Files
Jump to
Current section
Files
lib/uof/api/mappings/betting_status.ex
defmodule UOF.API.Mappings.BettingStatus do
@moduledoc false
use Saxaboom.Mapper
@type t :: %__MODULE__{
id: integer,
description: String.t()
}
document do
attribute(:id, cast: :integer)
attribute(:description)
end
end