Current section
Files
Jump to
Current section
Files
lib/docusign/model/account_seal_providers.ex
# NOTE: This file is auto generated by OpenAPI Generator 7.12.0 (https://openapi-generator.tech).
# Do not edit this file manually.
defmodule DocuSign.Model.AccountSealProviders do
@moduledoc """
"""
alias DocuSign.Deserializer
alias DocuSign.Model.SealIdentifier
@derive Jason.Encoder
defstruct [
:seals
]
@type t :: %__MODULE__{
:seals => [SealIdentifier.t()] | nil
}
def decode(value) do
value
|> Deserializer.deserialize(:seals, :list, SealIdentifier)
end
end