Current section

Files

Jump to
docusign lib docusign model dob_information_input.ex
Raw

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