Current section
Files
Jump to
Current section
Files
lib/ex_rollbar/rest_api/payload/data/notifier.ex
defmodule ExRollbar.RestAPI.Payload.Data.Notifier do
docstr = """
`notifier` struct for Rollbar Data object.
"""
@moduledoc docstr
@version Mix.Project.config[:version]
defstruct [
name: "ex_rollbar",
version: @version
]
@typedoc docstr
@type t :: %__MODULE__{
name: binary,
version: binary
}
end