Current section
Files
Jump to
Current section
Files
lib/docusign/model/sender_email_notifications.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.SenderEmailNotifications do
@moduledoc """
"""
@derive [Poison.Encoder]
defstruct [
:changedSigner,
:commentsOnlyPrivateAndMention,
:commentsReceiveAll,
:deliveryFailed,
:envelopeComplete,
:offlineSigningFailed,
:recipientViewed,
:senderEnvelopeDeclined,
:withdrawnConsent
]
@type t :: %__MODULE__{
:changedSigner => String.t(),
:commentsOnlyPrivateAndMention => String.t(),
:commentsReceiveAll => String.t(),
:deliveryFailed => String.t(),
:envelopeComplete => String.t(),
:offlineSigningFailed => String.t(),
:recipientViewed => String.t(),
:senderEnvelopeDeclined => String.t(),
:withdrawnConsent => String.t()
}
end
defimpl Poison.Decoder, for: DocuSign.Model.SenderEmailNotifications do
def decode(value, _options) do
value
end
end