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
8663 8664 8665 |
# File 'lib/kaltura_types.rb', line 8663 def auth_data @auth_data end |
#login_url ⇒ Object
Login URL when user need to sign-in and authorize the search
8665 8666 8667 |
# File 'lib/kaltura_types.rb', line 8665 def login_url @login_url end |
#message ⇒ Object
Information when there was an error
8667 8668 8669 |
# File 'lib/kaltura_types.rb', line 8667 def end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
8670 8671 8672 8673 8674 8675 8676 8677 8678 8679 8680 8681 |
# File 'lib/kaltura_types.rb', line 8670 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 |