Class: Kaltura::KalturaSearchAuthData

Inherits:
KalturaObjectBase show all
Defined in:
lib/kaltura_types.rb

Instance Attribute Summary collapse

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#auth_dataObject

The authentication data that further should be used for search



5517
5518
5519
# File 'lib/kaltura_types.rb', line 5517

def auth_data
  @auth_data
end

#login_urlObject

Login URL when user need to sign-in and authorize the search



5520
5521
5522
# File 'lib/kaltura_types.rb', line 5520

def 
  @login_url
end

#messageObject

Information when there was an error



5523
5524
5525
# File 'lib/kaltura_types.rb', line 5523

def message
  @message
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



5526
5527
5528
5529
5530
5531
# File 'lib/kaltura_types.rb', line 5526

def from_xml(xml_element)
	super
	self.auth_data = xml_element.elements['authData'].text
	self. = xml_element.elements['loginUrl'].text
	self.message = xml_element.elements['message'].text
end