Class: Kaltura::KalturaSyndicationFeedEntryCount
- Inherits:
-
KalturaObjectBase
- Object
- KalturaObjectBase
- Kaltura::KalturaSyndicationFeedEntryCount
- Defined in:
- lib/kaltura_types.rb
Instance Attribute Summary collapse
-
#actual_entry_count ⇒ Object
count of entries that will appear in the feed (including all relevant filters).
-
#require_transcoding_count ⇒ Object
count of entries that requires transcoding in order to be included in feed.
-
#total_entry_count ⇒ Object
the total count of entries that should appear in the feed without flavor filtering.
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#actual_entry_count ⇒ Object
count of entries that will appear in the feed (including all relevant filters)
10040 10041 10042 |
# File 'lib/kaltura_types.rb', line 10040 def actual_entry_count @actual_entry_count end |
#require_transcoding_count ⇒ Object
count of entries that requires transcoding in order to be included in feed
10042 10043 10044 |
# File 'lib/kaltura_types.rb', line 10042 def require_transcoding_count @require_transcoding_count end |
#total_entry_count ⇒ Object
the total count of entries that should appear in the feed without flavor filtering
10038 10039 10040 |
# File 'lib/kaltura_types.rb', line 10038 def total_entry_count @total_entry_count end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
10054 10055 10056 10057 10058 10059 10060 10061 10062 10063 10064 10065 |
# File 'lib/kaltura_types.rb', line 10054 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 |