Class: Kaltura::KalturaPlayerEmbedCodeType

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

#entry_onlyObject

Returns the value of attribute entry_only.



4385
4386
4387
# File 'lib/kaltura_types.rb', line 4385

def entry_only
  @entry_only
end

#idObject

Returns the value of attribute id.



4383
4384
4385
# File 'lib/kaltura_types.rb', line 4383

def id
  @id
end

#labelObject

Returns the value of attribute label.



4384
4385
4386
# File 'lib/kaltura_types.rb', line 4384

def label
  @label
end

#min_versionObject

Returns the value of attribute min_version.



4386
4387
4388
# File 'lib/kaltura_types.rb', line 4386

def min_version
  @min_version
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



4392
4393
4394
4395
4396
4397
4398
# File 'lib/kaltura_types.rb', line 4392

def from_xml(xml_element)
	super
	self.id = xml_element.elements['id'].text
	self.label = xml_element.elements['label'].text
	self.entry_only = xml_element.elements['entryOnly'].text
	self.min_version = xml_element.elements['minVersion'].text
end