# 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.ConnectUserObject do
@moduledoc """
"""
@derive [Poison.Encoder]
defstruct [
:configurationtype,
:connectId,
:enabled,
:hasAccess,
:senderSearchableItems
]
@type t :: %__MODULE__{
:configurationtype => String.t() | nil,
:connectId => String.t() | nil,
:enabled => String.t() | nil,
:hasAccess => String.t() | nil,
:senderSearchableItems => [String.t()] | nil
}
end
defimpl Poison.Decoder, for: DocuSign.Model.ConnectUserObject do
def decode(value, _options) do
value
end
end