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.
1351 |
# File 'sig/types.rbs', line 1351
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.
1349 1350 1351 |
# File 'sig/types.rbs', line 1349 def @attachments end |
#bcc_emails ⇒ Array[String]?
Returns the value of attribute bcc_emails.
1347 1348 1349 |
# File 'sig/types.rbs', line 1347 def bcc_emails @bcc_emails end |
#cc_emails ⇒ Array[String]?
Returns the value of attribute cc_emails.
1346 1347 1348 |
# File 'sig/types.rbs', line 1346 def cc_emails @cc_emails end |
#from_email ⇒ String?
Returns the value of attribute from_email.
1343 1344 1345 |
# File 'sig/types.rbs', line 1343 def from_email @from_email end |
#from_name ⇒ String?
Returns the value of attribute from_name.
1344 1345 1346 |
# File 'sig/types.rbs', line 1344 def from_name @from_name end |
#message_id ⇒ String?
Returns the value of attribute message_id.
1348 1349 1350 |
# File 'sig/types.rbs', line 1348 def @message_id end |
#to_emails ⇒ Array[String]?
Returns the value of attribute to_emails.
1345 1346 1347 |
# File 'sig/types.rbs', line 1345 def to_emails @to_emails end |