Current section
Files
Jump to
Current section
Files
lib/docusign/model/dob_information_input.ex
# NOTE: This file is auto generated by OpenAPI Generator 6.4.0 (https://openapi-generator.tech).
# Do not edit this file 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() | nil,
:displayLevelCode => String.t() | nil,
:receiveInResponse => String.t() | nil
}
end
defimpl Poison.Decoder, for: DocuSign.Model.DobInformationInput do
def decode(value, _options) do
value
end
end