Current section

Files

Jump to
docusign lib docusign model recipient_option.ex
Raw

lib/docusign/model/recipient_option.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.RecipientOption do
@moduledoc """
Describes a recipient who is a member of a conditional group.
"""
@derive Jason.Encoder
defstruct [
:email,
:name,
:recipientLabel,
:roleName,
:signingGroupId
]
@type t :: %__MODULE__{
:email => String.t() | nil,
:name => String.t() | nil,
:recipientLabel => String.t() | nil,
:roleName => String.t() | nil,
:signingGroupId => String.t() | nil
}
def decode(value) do
value
end
end