Current section
Files
Jump to
Current section
Files
lib/uof/api/mappings/bookmaker_details.ex
defmodule UOF.API.Mappings.BookmakerDetails do
@moduledoc false
use Saxaboom.Mapper
@type t :: %__MODULE__{
expire_at: String.t(),
bookmaker_id: String.t(),
virtual_host: String.t()
}
document do
attribute(:expire_at)
attribute(:bookmaker_id)
attribute(:virtual_host)
end
end