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
4492 4493 4494 |
# File 'lib/kaltura_types.rb', line 4492 def duration @duration end |
#duration_type ⇒ Object
The duration type (short for 0-4 mins, medium for 4-20 mins, long for 20+ mins)
4496 4497 4498 |
# File 'lib/kaltura_types.rb', line 4496 def duration_type @duration_type end |
#height ⇒ Object
The height in pixels
4490 4491 4492 |
# File 'lib/kaltura_types.rb', line 4490 def height @height end |
#last_played_at ⇒ Object
The last time the entry was played
4486 4487 4488 |
# File 'lib/kaltura_types.rb', line 4486 def last_played_at @last_played_at end |
#ms_duration ⇒ Object
The duration in miliseconds
4494 4495 4496 |
# File 'lib/kaltura_types.rb', line 4494 def ms_duration @ms_duration end |
#plays ⇒ Object
Number of plays
4482 4483 4484 |
# File 'lib/kaltura_types.rb', line 4482 def plays @plays end |
#views ⇒ Object
Number of views
4484 4485 4486 |
# File 'lib/kaltura_types.rb', line 4484 def views @views end |
#width ⇒ Object
The width in pixels
4488 4489 4490 |
# File 'lib/kaltura_types.rb', line 4488 def width @width end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 |
# File 'lib/kaltura_types.rb', line 4520 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 |