lib/docusign/model/recipient_option.ex

# NOTE: This file is auto generated by OpenAPI Generator 6.4.0 (https://openapi-generator.tech).
# Do not edit this file manually.

defmodule DocuSign.Model.RecipientOption do
  @moduledoc """
  Describes a recipient who is a member of a conditional group.
  """

  @derive [Poison.Encoder]
  defstruct [
    :email,
    :name,
    :recipientLabel,
    :roleName,
    :signingGroupId
  ]

  @type t :: %__MODULE__{
          :email => String.t() | nil,
          :name => String.t() | nil,
          :recipientLabel => String.t() | nil,
          :roleName => String.t() | nil,
          :signingGroupId => String.t() | nil
        }
end

defimpl Poison.Decoder, for: DocuSign.Model.RecipientOption do
  def decode(value, _options) do
    value
  end
end