MailSlurpAPI.Model.WebhookNewAttachmentPayload (mailslurp v15.17.22)

NEW_ATTACHMENT webhook payload. Sent to your webhook url endpoint via HTTP POST when an email is received by the inbox that your webhook is attached to that contains an attachment. You can use the attachmentId to download the attachment.

Summary

Types

@type t() :: %MailSlurpAPI.Model.WebhookNewAttachmentPayload{
  attachmentId: String.t(),
  contentLength: integer(),
  contentType: String.t(),
  eventName: String.t(),
  messageId: String.t(),
  name: String.t(),
  webhookId: String.t(),
  webhookName: String.t() | nil
}