Current section
Files
Jump to
Current section
Files
lib/docusign/model/workspace_settings.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.WorkspaceSettings do
@moduledoc """
This object provides information about the settings for the workspace.
"""
@derive Jason.Encoder
defstruct [
:commentsAllowed
]
@type t :: %__MODULE__{
:commentsAllowed => String.t() | nil
}
def decode(value) do
value
end
end