Current section

Files

Jump to
docusign lib docusign model list_item.ex
Raw

lib/docusign/model/list_item.ex

# NOTE: This class is auto generated by the swagger code generator program.
# https://github.com/swagger-api/swagger-codegen.git
# Do not edit the class manually.
defmodule DocuSign.Model.ListItem do
@moduledoc """
One of the selectable items in the `listItems` property of a [`list`](/esign/restapi/Envelopes/EnvelopeRecipientTabs/create/#/definitions/list) tab.
"""
@derive [Poison.Encoder]
defstruct [
:selected,
:text,
:value
]
@type t :: %__MODULE__{
:selected => String.t(),
:text => String.t(),
:value => String.t()
}
end
defimpl Poison.Decoder, for: DocuSign.Model.ListItem do
def decode(value, _options) do
value
end
end