Packages

Elixir wrapper for Voxbone API.

Retired package: Deprecated - This package is no longer maintained

Current section

Files

Jump to
voxbone lib voxbone model request_address_verification_response.ex
Raw

lib/voxbone/model/request_address_verification_response.ex

# NOTE: This class is auto generated by the swagger code generator program.
# https://github.com/swagger-api/swagger-codegen.git
# Do not edit the class manually.
defmodule Voxbone.Model.RequestAddressVerificationResponse do
@moduledoc """
"""
@derive [Poison.Encoder]
defstruct [
:status
]
@type t :: %__MODULE__{
:status => String.t()
}
end
defimpl Poison.Decoder, for: Voxbone.Model.RequestAddressVerificationResponse do
def decode(value, _options) do
value
end
end