Current section

Files

Jump to
docusign lib docusign model smart_section_collapsible_display_settings.ex
Raw

lib/docusign/model/smart_section_collapsible_display_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.SmartSectionCollapsibleDisplaySettings do
@moduledoc """
"""
@derive Jason.Encoder
defstruct [
:arrowClosed,
:arrowColor,
:arrowLocation,
:arrowOpen,
:arrowSize,
:arrowStyle,
:containerStyle,
:labelStyle,
:onlyArrowIsClickable,
:outerLabelAndArrowStyle
]
@type t :: %__MODULE__{
:arrowClosed => String.t() | nil,
:arrowColor => String.t() | nil,
:arrowLocation => String.t() | nil,
:arrowOpen => String.t() | nil,
:arrowSize => String.t() | nil,
:arrowStyle => String.t() | nil,
:containerStyle => String.t() | nil,
:labelStyle => String.t() | nil,
:onlyArrowIsClickable => boolean() | nil,
:outerLabelAndArrowStyle => String.t() | nil
}
def decode(value) do
value
end
end