lib/docusign/model/connect_failure_filter.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.ConnectFailureFilter do
  @moduledoc """
  A list of failed envelope IDs to retry.
  """

  @derive [Poison.Encoder]
  defstruct [
    :envelopeIds,
    :synchronous
  ]

  @type t :: %__MODULE__{
          :envelopeIds => [String.t()] | nil,
          :synchronous => String.t() | nil
        }
end

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