Class: Xberg::EmailMetadata
- Inherits:
-
Object
- Object
- Xberg::EmailMetadata
- Defined in:
- sig/types.rbs
Instance Attribute Summary collapse
-
#attachments ⇒ Array[String]?
Returns the value of attribute attachments.
-
#bcc_emails ⇒ Array[String]?
Returns the value of attribute bcc_emails.
-
#cc_emails ⇒ Array[String]?
Returns the value of attribute cc_emails.
-
#from_email ⇒ String?
Returns the value of attribute from_email.
-
#from_name ⇒ String?
Returns the value of attribute from_name.
-
#message_id ⇒ String?
Returns the value of attribute message_id.
-
#to_emails ⇒ Array[String]?
Returns the value of attribute to_emails.
Instance Method Summary collapse
-
#initialize ⇒ EmailMetadata
constructor
A new instance of EmailMetadata.
Constructor Details
#initialize ⇒ EmailMetadata
Returns a new instance of EmailMetadata.
1386 |
# File 'sig/types.rbs', line 1386
def initialize: (?from_email: String, ?from_name: String, ?to_emails: Array[String], ?cc_emails: Array[String], ?bcc_emails: Array[String], ?message_id: String, ?attachments: Array[String]) -> void
|
Instance Attribute Details
#attachments ⇒ Array[String]?
Returns the value of attribute attachments.
1384 1385 1386 |
# File 'sig/types.rbs', line 1384 def @attachments end |
#bcc_emails ⇒ Array[String]?
Returns the value of attribute bcc_emails.
1382 1383 1384 |
# File 'sig/types.rbs', line 1382 def bcc_emails @bcc_emails end |
#cc_emails ⇒ Array[String]?
Returns the value of attribute cc_emails.
1381 1382 1383 |
# File 'sig/types.rbs', line 1381 def cc_emails @cc_emails end |
#from_email ⇒ String?
Returns the value of attribute from_email.
1378 1379 1380 |
# File 'sig/types.rbs', line 1378 def from_email @from_email end |
#from_name ⇒ String?
Returns the value of attribute from_name.
1379 1380 1381 |
# File 'sig/types.rbs', line 1379 def from_name @from_name end |
#message_id ⇒ String?
Returns the value of attribute message_id.
1383 1384 1385 |
# File 'sig/types.rbs', line 1383 def @message_id end |
#to_emails ⇒ Array[String]?
Returns the value of attribute to_emails.
1380 1381 1382 |
# File 'sig/types.rbs', line 1380 def to_emails @to_emails end |