defmodule MessengerBot.Model.Optin do @moduledoc """ Structure and type for optin """ defstruct [:ref] @type t :: %__MODULE__{ ref: String.t() } end