Current section

Files

Jump to
docusign lib docusign model power_form_recipient.ex
Raw

lib/docusign/model/power_form_recipient.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.PowerFormRecipient do
@moduledoc """
**Note:** For a self-service PowerForm on a website, you can specify the intended recipients generically (for example, use `Member` as the `Name`), and omit personal details such as `email`.
"""
@derive Jason.Encoder
defstruct [
:accessCode,
:accessCodeLocked,
:accessCodeRequired,
:email,
:emailLocked,
:idCheckConfigurationName,
:idCheckRequired,
:name,
:recipientType,
:roleName,
:routingOrder,
:templateRequiresIdLookup,
:userNameLocked
]
@type t :: %__MODULE__{
:accessCode => String.t() | nil,
:accessCodeLocked => String.t() | nil,
:accessCodeRequired => String.t() | nil,
:email => String.t() | nil,
:emailLocked => String.t() | nil,
:idCheckConfigurationName => String.t() | nil,
:idCheckRequired => String.t() | nil,
:name => String.t() | nil,
:recipientType => String.t() | nil,
:roleName => String.t() | nil,
:routingOrder => String.t() | nil,
:templateRequiresIdLookup => String.t() | nil,
:userNameLocked => String.t() | nil
}
def decode(value) do
value
end
end