GoogleApi.Gmail.V1.Model.MessagePart (google_api_gmail v0.13.3) View Source

A single MIME message part.

Attributes

  • body (type: GoogleApi.Gmail.V1.Model.MessagePartBody.t, default: nil) - The message part body for this part, which may be empty for container MIME message parts.
  • filename (type: String.t, default: nil) - The filename of the attachment. Only present if this message part represents an attachment.
  • headers (type: list(GoogleApi.Gmail.V1.Model.MessagePartHeader.t), default: nil) - List of headers on this message part. For the top-level message part, representing the entire message payload, it will contain the standard RFC 2822 email headers such as To, From, and Subject.
  • mimeType (type: String.t, default: nil) - The MIME type of the message part.
  • partId (type: String.t, default: nil) - The immutable ID of the message part.
  • parts (type: list(GoogleApi.Gmail.V1.Model.MessagePart.t), default: nil) - The child MIME message parts of this part. This only applies to container MIME message parts, for example multipart/*. For non- container MIME message part types, such as text/plain, this field is empty. For more information, see RFC 1521.

Link to this section Summary

Functions

Unwrap a decoded JSON object into its complex fields.

Link to this section Types

Specs

t() :: %GoogleApi.Gmail.V1.Model.MessagePart{
  body: GoogleApi.Gmail.V1.Model.MessagePartBody.t(),
  filename: String.t(),
  headers: [GoogleApi.Gmail.V1.Model.MessagePartHeader.t()],
  mimeType: String.t(),
  partId: String.t(),
  parts: [GoogleApi.Gmail.V1.Model.MessagePart.t()]
}

Link to this section Functions

Specs

decode(struct(), keyword()) :: struct()

Unwrap a decoded JSON object into its complex fields.