Packages

Decode IAB GPP strings including the region specific sections they contain.

Current section

Files

Jump to
gpp lib gpp id_range.ex
Raw

lib/gpp/id_range.ex

defmodule Gpp.IdRange do
@moduledoc false
@type t :: %__MODULE__{
start_id: non_neg_integer(),
end_id: non_neg_integer()
}
defstruct [:start_id, :end_id]
end