Class: Viewpoint::EWS::Attendee
- Inherits:
-
MailboxUser
- Object
- MailboxUser
- Viewpoint::EWS::Attendee
- Includes:
- Model
- Defined in:
- lib/model/attendee.rb
Overview
TODO:
Design a Class method that resolves to an Array of MailboxUsers
This represents a Mailbox object in the Exchange data store
Instance Attribute Summary collapse
-
#response ⇒ Object
readonly
Returns the value of attribute response.
Attributes included from Model
#ews_methods, #ews_methods_undef
Instance Method Summary collapse
-
#initialize(attendee) ⇒ Attendee
constructor
A new instance of Attendee.
Methods inherited from MailboxUser
#add_delegate!, find_user, #get_delegate_info, #get_oof, #update_delegate!
Constructor Details
#initialize(attendee) ⇒ Attendee
Returns a new instance of Attendee.
30 31 32 33 |
# File 'lib/model/attendee.rb', line 30 def initialize(attendee) @response = attendee[:response_type][:text] super(attendee[:mailbox]) end |
Instance Attribute Details
#response ⇒ Object (readonly)
Returns the value of attribute response.
28 29 30 |
# File 'lib/model/attendee.rb', line 28 def response @response end |