Current section
Files
Jump to
Current section
Files
lib/docusign/model/recipient_signature_provider_options.ex
# NOTE: This class is auto generated by the swagger code generator program.
# https://github.com/swagger-api/swagger-codegen.git
# Do not edit the class manually.
defmodule DocuSign.Model.RecipientSignatureProviderOptions do
@moduledoc """
Option settings for the signature provider. Different providers require or use different options. [The current provider list and the options they require.](../../../../guide/appendix/standards_based_signatures.html#signature-provider-options)
"""
@derive [Poison.Encoder]
defstruct [
:cpfNumber,
:oneTimePassword,
:signerRole,
:sms
]
@type t :: %__MODULE__{
:cpfNumber => String.t(),
:oneTimePassword => String.t(),
:signerRole => String.t(),
:sms => String.t()
}
end
defimpl Poison.Decoder, for: DocuSign.Model.RecipientSignatureProviderOptions do
def decode(value, _options) do
value
end
end