Class: Kaltura::KalturaPlayableEntry
- Inherits:
-
KalturaBaseEntry
- Object
- KalturaObjectBase
- KalturaBaseEntry
- Kaltura::KalturaPlayableEntry
- Defined in:
- lib/kaltura_types.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#duration ⇒ Object
The duration in seconds.
-
#duration_type ⇒ Object
The duration type (short for 0-4 mins, medium for 4-20 mins, long for 20+ mins).
-
#height ⇒ Object
The height in pixels.
-
#last_played_at ⇒ Object
The last time the entry was played.
-
#ms_duration ⇒ Object
The duration in miliseconds.
-
#plays ⇒ Object
Number of plays.
-
#views ⇒ Object
Number of views.
-
#width ⇒ Object
The width in pixels.
Attributes inherited from KalturaBaseEntry
#access_control_id, #admin_tags, #application, #application_version, #capabilities, #categories, #categories_ids, #conversion_profile_id, #created_at, #creator_id, #description, #display_in_search, #download_url, #end_date, #entitled_users_edit, #entitled_users_publish, #entitled_users_view, #group_id, #id, #license_type, #moderation_count, #moderation_status, #name, #operation_attributes, #parent_entry_id, #partner_data, #partner_id, #partner_sort_value, #rank, #redirect_entry_id, #reference_id, #replaced_entry_id, #replacement_status, #replacing_entry_id, #root_entry_id, #search_text, #start_date, #status, #tags, #template_entry_id, #thumbnail_url, #total_rank, #type, #updated_at, #user_id, #version, #votes
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#duration ⇒ Object
The duration in seconds
4477 4478 4479 |
# File 'lib/kaltura_types.rb', line 4477 def duration @duration end |
#duration_type ⇒ Object
The duration type (short for 0-4 mins, medium for 4-20 mins, long for 20+ mins)
4481 4482 4483 |
# File 'lib/kaltura_types.rb', line 4481 def duration_type @duration_type end |
#height ⇒ Object
The height in pixels
4475 4476 4477 |
# File 'lib/kaltura_types.rb', line 4475 def height @height end |
#last_played_at ⇒ Object
The last time the entry was played
4471 4472 4473 |
# File 'lib/kaltura_types.rb', line 4471 def last_played_at @last_played_at end |
#ms_duration ⇒ Object
The duration in miliseconds
4479 4480 4481 |
# File 'lib/kaltura_types.rb', line 4479 def ms_duration @ms_duration end |
#plays ⇒ Object
Number of plays
4467 4468 4469 |
# File 'lib/kaltura_types.rb', line 4467 def plays @plays end |
#views ⇒ Object
Number of views
4469 4470 4471 |
# File 'lib/kaltura_types.rb', line 4469 def views @views end |
#width ⇒ Object
The width in pixels
4473 4474 4475 |
# File 'lib/kaltura_types.rb', line 4473 def width @width end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 |
# File 'lib/kaltura_types.rb', line 4505 def from_xml(xml_element) super if xml_element.elements['plays'] != nil self.plays = xml_element.elements['plays'].text end if xml_element.elements['views'] != nil self.views = xml_element.elements['views'].text end if xml_element.elements['lastPlayedAt'] != nil self.last_played_at = xml_element.elements['lastPlayedAt'].text end if xml_element.elements['width'] != nil self.width = xml_element.elements['width'].text end if xml_element.elements['height'] != nil self.height = xml_element.elements['height'].text end if xml_element.elements['duration'] != nil self.duration = xml_element.elements['duration'].text end if xml_element.elements['msDuration'] != nil self.ms_duration = xml_element.elements['msDuration'].text end if xml_element.elements['durationType'] != nil self.duration_type = xml_element.elements['durationType'].text end end |