Current section
Files
Jump to
Current section
Files
lib/express/apns/push_message/alert.ex
defmodule Express.APNS.PushMessage.Alert do
@moduledoc """
Defines APNS push message alert structure.
"""
@derive [Poison.Encoder]
@type t :: %__MODULE__{title: String.t, body: String.t}
defstruct ~w(title body)a
end