Class: Kaltura::KalturaSearchAuthData
- Inherits:
-
KalturaObjectBase
- Object
- KalturaObjectBase
- Kaltura::KalturaSearchAuthData
- Defined in:
- lib/kaltura_types.rb
Instance Attribute Summary collapse
-
#auth_data ⇒ Object
The authentication data that further should be used for search.
-
#login_url ⇒ Object
Login URL when user need to sign-in and authorize the search.
-
#message ⇒ Object
Information when there was an error.
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#auth_data ⇒ Object
The authentication data that further should be used for search
9212 9213 9214 |
# File 'lib/kaltura_types.rb', line 9212 def auth_data @auth_data end |
#login_url ⇒ Object
Login URL when user need to sign-in and authorize the search
9214 9215 9216 |
# File 'lib/kaltura_types.rb', line 9214 def login_url @login_url end |
#message ⇒ Object
Information when there was an error
9216 9217 9218 |
# File 'lib/kaltura_types.rb', line 9216 def @message end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
9219 9220 9221 9222 9223 9224 9225 9226 9227 9228 9229 9230 |
# File 'lib/kaltura_types.rb', line 9219 def from_xml(xml_element) super if xml_element.elements['authData'] != nil self.auth_data = xml_element.elements['authData'].text end if xml_element.elements['loginUrl'] != nil self.login_url = xml_element.elements['loginUrl'].text end if xml_element.elements['message'] != nil self. = xml_element.elements['message'].text end end |