Class: Xberg::EmailExtractionResult
- Inherits:
-
Object
- Object
- Xberg::EmailExtractionResult
- Defined in:
- sig/types.rbs
Instance Attribute Summary collapse
-
#attachments ⇒ Array[EmailAttachment]
readonly
Returns the value of attribute attachments.
-
#bcc_emails ⇒ Array[String]
readonly
Returns the value of attribute bcc_emails.
-
#cc_emails ⇒ Array[String]
readonly
Returns the value of attribute cc_emails.
-
#content ⇒ String
readonly
Returns the value of attribute content.
-
#date ⇒ String
readonly
Returns the value of attribute date.
-
#from_email ⇒ String
readonly
Returns the value of attribute from_email.
-
#html_content ⇒ String
readonly
Returns the value of attribute html_content.
-
#message_id ⇒ String
readonly
Returns the value of attribute message_id.
-
#metadata ⇒ Hash[String, String]
readonly
Returns the value of attribute metadata.
-
#plain_text ⇒ String
readonly
Returns the value of attribute plain_text.
-
#subject ⇒ String
readonly
Returns the value of attribute subject.
-
#to_emails ⇒ Array[String]
readonly
Returns the value of attribute to_emails.
Instance Method Summary collapse
-
#initialize ⇒ EmailExtractionResult
constructor
A new instance of EmailExtractionResult.
Constructor Details
#initialize ⇒ EmailExtractionResult
Returns a new instance of EmailExtractionResult.
1160 |
# File 'sig/types.rbs', line 1160
def initialize: (?subject: String, ?from_email: String, to_emails: Array[String], cc_emails: Array[String], bcc_emails: Array[String], ?date: String, ?message_id: String, ?plain_text: String, ?html_content: String, content: String, attachments: Array[EmailAttachment], metadata: Hash[String, String]) -> void
|
Instance Attribute Details
#attachments ⇒ Array[EmailAttachment] (readonly)
Returns the value of attribute attachments.
1157 1158 1159 |
# File 'sig/types.rbs', line 1157 def @attachments end |
#bcc_emails ⇒ Array[String] (readonly)
Returns the value of attribute bcc_emails.
1151 1152 1153 |
# File 'sig/types.rbs', line 1151 def bcc_emails @bcc_emails end |
#cc_emails ⇒ Array[String] (readonly)
Returns the value of attribute cc_emails.
1150 1151 1152 |
# File 'sig/types.rbs', line 1150 def cc_emails @cc_emails end |
#content ⇒ String (readonly)
Returns the value of attribute content.
1156 1157 1158 |
# File 'sig/types.rbs', line 1156 def content @content end |
#date ⇒ String (readonly)
Returns the value of attribute date.
1152 1153 1154 |
# File 'sig/types.rbs', line 1152 def date @date end |
#from_email ⇒ String (readonly)
Returns the value of attribute from_email.
1148 1149 1150 |
# File 'sig/types.rbs', line 1148 def from_email @from_email end |
#html_content ⇒ String (readonly)
Returns the value of attribute html_content.
1155 1156 1157 |
# File 'sig/types.rbs', line 1155 def html_content @html_content end |
#message_id ⇒ String (readonly)
Returns the value of attribute message_id.
1153 1154 1155 |
# File 'sig/types.rbs', line 1153 def @message_id end |
#metadata ⇒ Hash[String, String] (readonly)
Returns the value of attribute metadata.
1158 1159 1160 |
# File 'sig/types.rbs', line 1158 def @metadata end |
#plain_text ⇒ String (readonly)
Returns the value of attribute plain_text.
1154 1155 1156 |
# File 'sig/types.rbs', line 1154 def plain_text @plain_text end |
#subject ⇒ String (readonly)
Returns the value of attribute subject.
1147 1148 1149 |
# File 'sig/types.rbs', line 1147 def subject @subject end |
#to_emails ⇒ Array[String] (readonly)
Returns the value of attribute to_emails.
1149 1150 1151 |
# File 'sig/types.rbs', line 1149 def to_emails @to_emails end |