Current section

Files

Jump to
docusign lib docusign model recipient_names_response.ex
Raw

lib/docusign/model/recipient_names_response.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.RecipientNamesResponse do
@moduledoc """
"""
@derive [Poison.Encoder]
defstruct [
:multipleUsers,
:recipientNames,
:reservedRecipientEmail
]
@type t :: %__MODULE__{
:multipleUsers => String.t(),
:recipientNames => [String.t()],
:reservedRecipientEmail => String.t()
}
end
defimpl Poison.Decoder, for: DocuSign.Model.RecipientNamesResponse do
def decode(value, _options) do
value
end
end