Class: Viewpoint::EWS::SOAP::SubscribeResponseMessage
Instance Attribute Summary
#message, #type
Instance Method Summary
collapse
#initialize, #items, #message_text, #message_xml, #response_class, #response_code, #success?
Instance Method Details
#subscription ⇒ Object
22
23
24
|
# File 'lib/ews/soap/responses/subscribe_response_message.rb', line 22
def subscription
safe_hash_access message, [:elems]
end
|
#subscription_id ⇒ Object
26
27
28
|
# File 'lib/ews/soap/responses/subscribe_response_message.rb', line 26
def subscription_id
safe_hash_access subscription, [:subscription_id, :text]
end
|
#watermark ⇒ Object
30
31
32
|
# File 'lib/ews/soap/responses/subscribe_response_message.rb', line 30
def watermark
safe_hash_access subscription, [:watermark, :text]
end
|