Current section

Files

Jump to
docusign lib docusign model account_identity_verification_workflow.ex
Raw

lib/docusign/model/account_identity_verification_workflow.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.AccountIdentityVerificationWorkflow do
@moduledoc """
Specifies an Identity Verification workflow.
"""
@derive [Poison.Encoder]
defstruct [
:defaultDescription,
:defaultName,
:inputOptions,
:signatureProvider,
:workflowId,
:workflowLabel,
:workflowResourceKey
]
@type t :: %__MODULE__{
:defaultDescription => String.t() | nil,
:defaultName => String.t() | nil,
:inputOptions => [DocuSign.Model.AccountIdentityInputOption.t()] | nil,
:signatureProvider => DocuSign.Model.AccountSignatureProvider.t() | nil,
:workflowId => String.t() | nil,
:workflowLabel => String.t() | nil,
:workflowResourceKey => String.t() | nil
}
end
defimpl Poison.Decoder, for: DocuSign.Model.AccountIdentityVerificationWorkflow do
import DocuSign.Deserializer
def decode(value, options) do
value
|> deserialize(:inputOptions, :list, DocuSign.Model.AccountIdentityInputOption, options)
|> deserialize(:signatureProvider, :struct, DocuSign.Model.AccountSignatureProvider, options)
end
end