Current section
Files
Jump to
Current section
Files
lib/docusign/model/sender_email_notifications.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.SenderEmailNotifications do
@moduledoc """
Contains the settings for the email notifications that senders receive about the envelopes that they send.
"""
@derive Jason.Encoder
defstruct [
:changedSigner,
:clickwrapResponsesLimitNotificationEmail,
:commentsOnlyPrivateAndMention,
:commentsReceiveAll,
:deliveryFailed,
:envelopeComplete,
:offlineSigningFailed,
:powerformResponsesLimitNotificationEmail,
:purgeDocuments,
:recipientViewed,
:senderEnvelopeDeclined,
:withdrawnConsent
]
@type t :: %__MODULE__{
:changedSigner => String.t() | nil,
:clickwrapResponsesLimitNotificationEmail => String.t() | nil,
:commentsOnlyPrivateAndMention => String.t() | nil,
:commentsReceiveAll => String.t() | nil,
:deliveryFailed => String.t() | nil,
:envelopeComplete => String.t() | nil,
:offlineSigningFailed => String.t() | nil,
:powerformResponsesLimitNotificationEmail => String.t() | nil,
:purgeDocuments => String.t() | nil,
:recipientViewed => String.t() | nil,
:senderEnvelopeDeclined => String.t() | nil,
:withdrawnConsent => String.t() | nil
}
def decode(value) do
value
end
end