Class: Kaltura::KalturaSyndicationFeedEntryCount

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

#actual_entry_countObject

count of entries that will appear in the feed (including all relevant filters)



6032
6033
6034
# File 'lib/kaltura_types.rb', line 6032

def actual_entry_count
  @actual_entry_count
end

#require_transcoding_countObject

count of entries that requires transcoding in order to be included in feed



6035
6036
6037
# File 'lib/kaltura_types.rb', line 6035

def require_transcoding_count
  @require_transcoding_count
end

#total_entry_countObject

the total count of entries that should appear in the feed without flavor filtering



6029
6030
6031
# File 'lib/kaltura_types.rb', line 6029

def total_entry_count
  @total_entry_count
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



6047
6048
6049
6050
6051
6052
# File 'lib/kaltura_types.rb', line 6047

def from_xml(xml_element)
	super
	self.total_entry_count = xml_element.elements['totalEntryCount'].text
	self.actual_entry_count = xml_element.elements['actualEntryCount'].text
	self.require_transcoding_count = xml_element.elements['requireTranscodingCount'].text
end