lib/docusign/model/account_seals.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.AccountSeals do
  @moduledoc """

  """

  @derive [Poison.Encoder]
  defstruct [
    :seals
  ]

  @type t :: %__MODULE__{
          :seals => [DocuSign.Model.SealIdentifier.t()] | nil
        }
end

defimpl Poison.Decoder, for: DocuSign.Model.AccountSeals do
  import DocuSign.Deserializer

  def decode(value, options) do
    value
    |> deserialize(:seals, :list, DocuSign.Model.SealIdentifier, options)
  end
end