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, #block_auto_transcript, #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
4516 4517 4518 |
# File 'lib/kaltura_types.rb', line 4516 def duration @duration end |
#duration_type ⇒ Object
The duration type (short for 0-4 mins, medium for 4-20 mins, long for 20+ mins)
4520 4521 4522 |
# File 'lib/kaltura_types.rb', line 4520 def duration_type @duration_type end |
#height ⇒ Object
The height in pixels
4514 4515 4516 |
# File 'lib/kaltura_types.rb', line 4514 def height @height end |
#last_played_at ⇒ Object
The last time the entry was played
4510 4511 4512 |
# File 'lib/kaltura_types.rb', line 4510 def last_played_at @last_played_at end |
#ms_duration ⇒ Object
The duration in miliseconds
4518 4519 4520 |
# File 'lib/kaltura_types.rb', line 4518 def ms_duration @ms_duration end |
#plays ⇒ Object
Number of plays
4506 4507 4508 |
# File 'lib/kaltura_types.rb', line 4506 def plays @plays end |
#views ⇒ Object
Number of views
4508 4509 4510 |
# File 'lib/kaltura_types.rb', line 4508 def views @views end |
#width ⇒ Object
The width in pixels
4512 4513 4514 |
# File 'lib/kaltura_types.rb', line 4512 def width @width end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 |
# File 'lib/kaltura_types.rb', line 4544 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 |