Current section

Files

Jump to
docusign lib docusign model settings_metadata.ex
Raw

lib/docusign/model/settings_metadata.ex

# NOTE: This file is auto generated by OpenAPI Generator 7.12.0 (https://openapi-generator.tech).
# Do not edit this file manually.
defmodule DocuSign.Model.SettingsMetadata do
@moduledoc """
Metadata that indicates whether a property is editable and describes setting-specific options.
"""
@derive Jason.Encoder
defstruct [
:is21CFRPart11,
:options,
:rights,
:uiHint,
:uiOrder,
:uiType
]
@type t :: %__MODULE__{
:is21CFRPart11 => String.t() | nil,
:options => [String.t()] | nil,
:rights => String.t() | nil,
:uiHint => String.t() | nil,
:uiOrder => String.t() | nil,
:uiType => String.t() | nil
}
def decode(value) do
value
end
end