Class: Kaltura::KalturaCategoryEntry

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

#category_full_idsObject

The full ids of the Category



1604
1605
1606
# File 'lib/kaltura_types.rb', line 1604

def category_full_ids
  @category_full_ids
end

#category_idObject

Returns the value of attribute category_id.



1595
1596
1597
# File 'lib/kaltura_types.rb', line 1595

def category_id
  @category_id
end

#created_atObject

Creation date as Unix timestamp (In seconds)



1601
1602
1603
# File 'lib/kaltura_types.rb', line 1601

def created_at
  @created_at
end

#entry_idObject

entry id



1598
1599
1600
# File 'lib/kaltura_types.rb', line 1598

def entry_id
  @entry_id
end

#statusObject

CategroyEntry status



1607
1608
1609
# File 'lib/kaltura_types.rb', line 1607

def status
  @status
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



1619
1620
1621
1622
1623
1624
1625
1626
# File 'lib/kaltura_types.rb', line 1619

def from_xml(xml_element)
	super
	self.category_id = xml_element.elements['categoryId'].text
	self.entry_id = xml_element.elements['entryId'].text
	self.created_at = xml_element.elements['createdAt'].text
	self.category_full_ids = xml_element.elements['categoryFullIds'].text
	self.status = xml_element.elements['status'].text
end