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.
1269 |
# File 'sig/types.rbs', line 1269
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.
1267 1268 1269 |
# File 'sig/types.rbs', line 1267 def @attachments end |
#bcc_emails ⇒ Array[String]?
Returns the value of attribute bcc_emails.
1265 1266 1267 |
# File 'sig/types.rbs', line 1265 def bcc_emails @bcc_emails end |
#cc_emails ⇒ Array[String]?
Returns the value of attribute cc_emails.
1264 1265 1266 |
# File 'sig/types.rbs', line 1264 def cc_emails @cc_emails end |
#from_email ⇒ String?
Returns the value of attribute from_email.
1261 1262 1263 |
# File 'sig/types.rbs', line 1261 def from_email @from_email end |
#from_name ⇒ String?
Returns the value of attribute from_name.
1262 1263 1264 |
# File 'sig/types.rbs', line 1262 def from_name @from_name end |
#message_id ⇒ String?
Returns the value of attribute message_id.
1266 1267 1268 |
# File 'sig/types.rbs', line 1266 def @message_id end |
#to_emails ⇒ Array[String]?
Returns the value of attribute to_emails.
1263 1264 1265 |
# File 'sig/types.rbs', line 1263 def to_emails @to_emails end |