class Net::IMAP::BodyTypeText


* size[rdoc-ref:BodyTypeBasic#size]
* encoding[rdoc-ref:BodyTypeBasic#encoding]
* description[rdoc-ref:BodyTypeBasic#description]
* {content_id}[rdoc-ref:BodyTypeBasic#content_id]
* param[rdoc-ref:BodyTypeBasic#param]
* subtype[rdoc-ref:BodyTypeBasic#subtype]
* {media_type}[rdoc-ref:BodyTypeBasic#media_type]
BodyTypeBasic for documentation of the following:
BodyTypeText contains all of the fields of BodyTypeBasic. See
message parts, when Content-Type is text/*.
Net::IMAP::BodyTypeText represents the body structures of messages and

def media_subtype

the value of +subtype+.
generate a warning message to +stderr+, then return
Obsolete: use +subtype+ instead. Calling this will
def media_subtype
  warn("media_subtype is obsolete, use subtype instead.\n",
       uplevel: 1, category: :deprecated)
  return subtype
end

def multipart?

BodyTypeText is not used for multipart MIME parts.

:call-seq: multipart? -> false
#
def multipart?
  return false
end