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)



9471
9472
9473
# File 'lib/kaltura_types.rb', line 9471

def actual_entry_count
  @actual_entry_count
end

#require_transcoding_countObject

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



9473
9474
9475
# File 'lib/kaltura_types.rb', line 9473

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



9469
9470
9471
# File 'lib/kaltura_types.rb', line 9469

def total_entry_count
  @total_entry_count
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



9485
9486
9487
9488
9489
9490
9491
9492
9493
9494
9495
9496
# File 'lib/kaltura_types.rb', line 9485

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