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.
1324 |
# File 'sig/types.rbs', line 1324
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.
1322 1323 1324 |
# File 'sig/types.rbs', line 1322 def @attachments end |
#bcc_emails ⇒ Array[String]?
Returns the value of attribute bcc_emails.
1320 1321 1322 |
# File 'sig/types.rbs', line 1320 def bcc_emails @bcc_emails end |
#cc_emails ⇒ Array[String]?
Returns the value of attribute cc_emails.
1319 1320 1321 |
# File 'sig/types.rbs', line 1319 def cc_emails @cc_emails end |
#from_email ⇒ String?
Returns the value of attribute from_email.
1316 1317 1318 |
# File 'sig/types.rbs', line 1316 def from_email @from_email end |
#from_name ⇒ String?
Returns the value of attribute from_name.
1317 1318 1319 |
# File 'sig/types.rbs', line 1317 def from_name @from_name end |
#message_id ⇒ String?
Returns the value of attribute message_id.
1321 1322 1323 |
# File 'sig/types.rbs', line 1321 def @message_id end |
#to_emails ⇒ Array[String]?
Returns the value of attribute to_emails.
1318 1319 1320 |
# File 'sig/types.rbs', line 1318 def to_emails @to_emails end |