Class: Kaltura::KalturaClippingTaskEntryServerNode
- Inherits:
-
KalturaTaskEntryServerNode
- Object
- KalturaObjectBase
- KalturaEntryServerNode
- KalturaTaskEntryServerNode
- Kaltura::KalturaClippingTaskEntryServerNode
- Defined in:
- lib/kaltura_types.rb
Instance Attribute Summary collapse
-
#clip_attributes ⇒ Object
Returns the value of attribute clip_attributes.
-
#clipped_entry_id ⇒ Object
Returns the value of attribute clipped_entry_id.
-
#live_entry_id ⇒ Object
Returns the value of attribute live_entry_id.
Attributes inherited from KalturaEntryServerNode
#created_at, #entry_id, #id, #partner_id, #server_node_id, #server_type, #status, #updated_at
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#clip_attributes ⇒ Object
Returns the value of attribute clip_attributes.
16068 16069 16070 |
# File 'lib/kaltura_types.rb', line 16068 def clip_attributes @clip_attributes end |
#clipped_entry_id ⇒ Object
Returns the value of attribute clipped_entry_id.
16069 16070 16071 |
# File 'lib/kaltura_types.rb', line 16069 def clipped_entry_id @clipped_entry_id end |
#live_entry_id ⇒ Object
Returns the value of attribute live_entry_id.
16070 16071 16072 |
# File 'lib/kaltura_types.rb', line 16070 def live_entry_id @live_entry_id end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
16073 16074 16075 16076 16077 16078 16079 16080 16081 16082 16083 16084 |
# File 'lib/kaltura_types.rb', line 16073 def from_xml(xml_element) super if xml_element.elements['clipAttributes'] != nil self.clip_attributes = KalturaClientBase.object_from_xml(xml_element.elements['clipAttributes'], 'KalturaClipAttributes') end if xml_element.elements['clippedEntryId'] != nil self.clipped_entry_id = xml_element.elements['clippedEntryId'].text end if xml_element.elements['liveEntryId'] != nil self.live_entry_id = xml_element.elements['liveEntryId'].text end end |