Module: Viewpoint::EWS::RoomAccessors
Overview
This file is part of Viewpoint; the Ruby library for Microsoft Exchange Web Services.
Copyright
Constant Summary
Constants included from Viewpoint::EWS
Instance Attribute Summary
Attributes included from Viewpoint::EWS
Instance Method Summary collapse
-
#get_rooms(roomDistributionList) ⇒ Object
Gets the rooms that are available within the specified room distribution list.
- #room_email(room) ⇒ Object
- #room_name(room) ⇒ Object
Methods included from Viewpoint::EWS
#remove_impersonation, root_logger, #set_impersonation
Instance Method Details
#get_rooms(roomDistributionList) ⇒ Object
Gets the rooms that are available within the specified room distribution list
25 26 27 28 |
# File 'lib/ews/room_accessors.rb', line 25 def get_rooms(roomDistributionList) resp = ews.get_rooms(roomDistributionList) get_rooms_parser(resp) end |
#room_email(room) ⇒ Object
34 35 36 |
# File 'lib/ews/room_accessors.rb', line 34 def room_email( room ) room[:room][:elems][:id][:elems][1][:email_address][:text] end |
#room_name(room) ⇒ Object
30 31 32 |
# File 'lib/ews/room_accessors.rb', line 30 def room_name( room ) room[:room][:elems][:id][:elems][0][:name][:text] end |