lib/mail_slurp_api/model/test_phone_number_options.ex

# NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
# https://openapi-generator.tech
# Do not edit the class manually.

defmodule MailSlurpAPI.Model.TestPhoneNumberOptions do
  @moduledoc """
  
  """

  @derive [Poison.Encoder]
  defstruct [
    :"message"
  ]

  @type t :: %__MODULE__{
    :"message" => String.t
  }
end

defimpl Poison.Decoder, for: MailSlurpAPI.Model.TestPhoneNumberOptions do
  def decode(value, _options) do
    value
  end
end