Class: Etapper::API::OutlookIntegrationEmail
- Inherits:
-
Object
- Object
- Etapper::API::OutlookIntegrationEmail
- Defined in:
- lib/etapper/api/service.rb
Overview
Instance Attribute Summary collapse
-
#attachments ⇒ Object
Returns the value of attribute attachments.
-
#bCC ⇒ Object
Returns the value of attribute bCC.
-
#cC ⇒ Object
Returns the value of attribute cC.
-
#contactMethodRef ⇒ Object
Returns the value of attribute contactMethodRef.
-
#date ⇒ Object
Returns the value of attribute date.
-
#from ⇒ Object
Returns the value of attribute from.
-
#message ⇒ Object
Returns the value of attribute message.
-
#subject ⇒ Object
Returns the value of attribute subject.
-
#to ⇒ Object
Returns the value of attribute to.
Instance Method Summary collapse
-
#initialize(bCC = nil, cC = nil, attachments = nil, contactMethodRef = nil, date = nil, from = nil, message = nil, subject = nil, to = nil) ⇒ OutlookIntegrationEmail
constructor
A new instance of OutlookIntegrationEmail.
Constructor Details
#initialize(bCC = nil, cC = nil, attachments = nil, contactMethodRef = nil, date = nil, from = nil, message = nil, subject = nil, to = nil) ⇒ OutlookIntegrationEmail
Returns a new instance of OutlookIntegrationEmail.
1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 |
# File 'lib/etapper/api/service.rb', line 1075 def initialize(bCC = nil, cC = nil, = nil, contactMethodRef = nil, date = nil, from = nil, = nil, subject = nil, to = nil) @bCC = bCC @cC = cC @attachments = @contactMethodRef = contactMethodRef @date = date @from = from @message = @subject = subject @to = to end |
Instance Attribute Details
#attachments ⇒ Object
Returns the value of attribute attachments.
1067 1068 1069 |
# File 'lib/etapper/api/service.rb', line 1067 def @attachments end |
#bCC ⇒ Object
Returns the value of attribute bCC.
1065 1066 1067 |
# File 'lib/etapper/api/service.rb', line 1065 def bCC @bCC end |
#cC ⇒ Object
Returns the value of attribute cC.
1066 1067 1068 |
# File 'lib/etapper/api/service.rb', line 1066 def cC @cC end |
#contactMethodRef ⇒ Object
Returns the value of attribute contactMethodRef.
1068 1069 1070 |
# File 'lib/etapper/api/service.rb', line 1068 def contactMethodRef @contactMethodRef end |
#date ⇒ Object
Returns the value of attribute date.
1069 1070 1071 |
# File 'lib/etapper/api/service.rb', line 1069 def date @date end |
#from ⇒ Object
Returns the value of attribute from.
1070 1071 1072 |
# File 'lib/etapper/api/service.rb', line 1070 def from @from end |
#message ⇒ Object
Returns the value of attribute message.
1071 1072 1073 |
# File 'lib/etapper/api/service.rb', line 1071 def @message end |
#subject ⇒ Object
Returns the value of attribute subject.
1072 1073 1074 |
# File 'lib/etapper/api/service.rb', line 1072 def subject @subject end |
#to ⇒ Object
Returns the value of attribute to.
1073 1074 1075 |
# File 'lib/etapper/api/service.rb', line 1073 def to @to end |