class Kaltura::KalturaClipConcatJobData
Attributes
operation_attributes[RW]
clip operations
partner_id[RW]
$partnerId
priority[RW]
$priority
Public Instance Methods
from_xml(xml_element)
click to toggle source
Calls superclass method
Kaltura::KalturaJobData#from_xml
# File lib/kaltura_types.rb, line 12073 def from_xml(xml_element) super if xml_element.elements['partnerId'] != nil self.partner_id = xml_element.elements['partnerId'].text end if xml_element.elements['priority'] != nil self.priority = xml_element.elements['priority'].text end if xml_element.elements['operationAttributes'] != nil self.operation_attributes = KalturaClientBase.object_from_xml(xml_element.elements['operationAttributes'], 'KalturaOperationAttributes') end end
partner_id=(val)
click to toggle source
# File lib/kaltura_types.rb, line 12066 def partner_id=(val) @partner_id = val.to_i end
priority=(val)
click to toggle source
# File lib/kaltura_types.rb, line 12069 def priority=(val) @priority = val.to_i end