# 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.SignerEmailNotifications do
@moduledoc """
An array of email notifications that specifies the email the user receives when they are a recipient. When the specific email notification is set to true, the user receives those types of email notifications from DocuSign. The user inherits the default account email notification settings when the user is created.
"""
@derive [Poison.Encoder]
defstruct [
:agentNotification,
:carbonCopyNotification,
:certifiedDeliveryNotification,
:commentsOnlyPrivateAndMention,
:commentsReceiveAll,
:documentMarkupActivation,
:envelopeActivation,
:envelopeComplete,
:envelopeCorrected,
:envelopeDeclined,
:envelopeVoided,
:faxReceived,
:offlineSigningFailed,
:purgeDocuments,
:reassignedSigner,
:whenSigningGroupMember
]
@type t :: %__MODULE__{
:agentNotification => String.t() | nil,
:carbonCopyNotification => String.t() | nil,
:certifiedDeliveryNotification => String.t() | nil,
:commentsOnlyPrivateAndMention => String.t() | nil,
:commentsReceiveAll => String.t() | nil,
:documentMarkupActivation => String.t() | nil,
:envelopeActivation => String.t() | nil,
:envelopeComplete => String.t() | nil,
:envelopeCorrected => String.t() | nil,
:envelopeDeclined => String.t() | nil,
:envelopeVoided => String.t() | nil,
:faxReceived => String.t() | nil,
:offlineSigningFailed => String.t() | nil,
:purgeDocuments => String.t() | nil,
:reassignedSigner => String.t() | nil,
:whenSigningGroupMember => String.t() | nil
}
end
defimpl Poison.Decoder, for: DocuSign.Model.SignerEmailNotifications do
def decode(value, _options) do
value
end
end