lib/docusign/model/workspace_settings.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.WorkspaceSettings do
@moduledoc """
This object provides information about the settings for the workspace.
"""
@derive [Poison.Encoder]
defstruct [
:commentsAllowed
]
@type t :: %__MODULE__{
:commentsAllowed => String.t() | nil
}
end
defimpl Poison.Decoder, for: DocuSign.Model.WorkspaceSettings do
def decode(value, _options) do
value
end
end