# 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.AccountSealProviders do @moduledoc """ """ @derive [Poison.Encoder] defstruct [ :seals ] @type t :: %__MODULE__{ :seals => [DocuSign.Model.SealIdentifier.t()] | nil } end defimpl Poison.Decoder, for: DocuSign.Model.AccountSealProviders do import DocuSign.Deserializer def decode(value, options) do value |> deserialize(:seals, :list, DocuSign.Model.SealIdentifier, options) end end