Current section
Files
Jump to
Current section
Files
lib/uof/api/mappings/producer.ex
defmodule UOF.API.Mappings.Producer do
@moduledoc false
use Saxaboom.Mapper
document do
attribute(:id, cast: :integer)
attribute(:name)
attribute(:description)
attribute(:api_url)
attribute(:active, cast: :boolean)
attribute(:scope)
attribute(:stateful_recovery_window_in_minutes, cast: :integer)
end
end