Current section

Files

Jump to
docusign lib docusign model power_form_form_data_recipient.ex
Raw

lib/docusign/model/power_form_form_data_recipient.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.PowerFormFormDataRecipient do
@moduledoc """
"""
@derive [Poison.Encoder]
defstruct [
:email,
:formData,
:name,
:recipientId
]
@type t :: %__MODULE__{
:email => String.t(),
:formData => [NameValue],
:name => String.t(),
:recipientId => String.t()
}
end
defimpl Poison.Decoder, for: DocuSign.Model.PowerFormFormDataRecipient do
import DocuSign.Deserializer
def decode(value, options) do
value
|> deserialize(:formData, :list, DocuSign.Model.NameValue, options)
end
end