Current section

Files

Jump to
docusign lib docusign model account_identity_verification_step.ex
Raw

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