Class: Kaltura::KalturaAuthentication

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

#qr_codeObject

Returns the value of attribute qr_code.



833
834
835
# File 'lib/kaltura_types.rb', line 833

def qr_code
  @qr_code
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



836
837
838
839
840
841
# File 'lib/kaltura_types.rb', line 836

def from_xml(xml_element)
	super
	if xml_element.elements['qrCode'] != nil
		self.qr_code = xml_element.elements['qrCode'].text
	end
end