class Kaltura::KalturaSyndicationFeedEntryCount
Attributes
actual_entry_count[RW]
count of entries that will appear in the feed (including all relevant filters)
require_transcoding_count[RW]
count of entries that requires transcoding in order to be included in feed
total_entry_count[RW]
the total count of entries that should appear in the feed without flavor filtering
Public Instance Methods
actual_entry_count=(val)
click to toggle source
# File lib/kaltura_types.rb, line 9842 def actual_entry_count=(val) @actual_entry_count = val.to_i end
from_xml(xml_element)
click to toggle source
Calls superclass method
Kaltura::KalturaObjectBase#from_xml
# File lib/kaltura_types.rb, line 9849 def from_xml(xml_element) super if xml_element.elements['totalEntryCount'] != nil self.total_entry_count = xml_element.elements['totalEntryCount'].text end if xml_element.elements['actualEntryCount'] != nil self.actual_entry_count = xml_element.elements['actualEntryCount'].text end if xml_element.elements['requireTranscodingCount'] != nil self.require_transcoding_count = xml_element.elements['requireTranscodingCount'].text end end
require_transcoding_count=(val)
click to toggle source
# File lib/kaltura_types.rb, line 9845 def require_transcoding_count=(val) @require_transcoding_count = val.to_i end
total_entry_count=(val)
click to toggle source
# File lib/kaltura_types.rb, line 9839 def total_entry_count=(val) @total_entry_count = val.to_i end