Current section

Files

Jump to
voxbone lib voxbone model create_proof_of_id_response.ex
Raw

lib/voxbone/model/create_proof_of_id_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.CreateProofOfIdResponse do
@moduledoc """
"""
@derive [Poison.Encoder]
defstruct [
:status
]
@type t :: %__MODULE__{
:status => String.t()
}
end
defimpl Poison.Decoder, for: Voxbone.Model.CreateProofOfIdResponse do
def decode(value, _options) do
value
end
end