Class: Kaltura::KalturaClippingTaskEntryServerNode

Inherits:
KalturaTaskEntryServerNode show all
Defined in:
lib/kaltura_types.rb

Instance Attribute Summary collapse

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

#camelcase, #to_b, #to_params

Instance Attribute Details

#clip_attributesObject

Returns the value of attribute clip_attributes.



16126
16127
16128
# File 'lib/kaltura_types.rb', line 16126

def clip_attributes
  @clip_attributes
end

#clipped_entry_idObject

Returns the value of attribute clipped_entry_id.



16127
16128
16129
# File 'lib/kaltura_types.rb', line 16127

def clipped_entry_id
  @clipped_entry_id
end

#live_entry_idObject

Returns the value of attribute live_entry_id.



16128
16129
16130
# File 'lib/kaltura_types.rb', line 16128

def live_entry_id
  @live_entry_id
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



16131
16132
16133
16134
16135
16136
16137
16138
16139
16140
16141
16142
# File 'lib/kaltura_types.rb', line 16131

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