Class: Kaltura::KalturaCopyPartnerJobData

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

Instance Attribute Summary collapse

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#from_partner_idObject

Id of the partner to copy from



12567
12568
12569
# File 'lib/kaltura_types.rb', line 12567

def from_partner_id
  @from_partner_id
end

#to_partner_idObject

Id of the partner to copy to



12569
12570
12571
# File 'lib/kaltura_types.rb', line 12569

def to_partner_id
  @to_partner_id
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



12578
12579
12580
12581
12582
12583
12584
12585
12586
# File 'lib/kaltura_types.rb', line 12578

def from_xml(xml_element)
	super
	if xml_element.elements['fromPartnerId'] != nil
		self.from_partner_id = xml_element.elements['fromPartnerId'].text
	end
	if xml_element.elements['toPartnerId'] != nil
		self.to_partner_id = xml_element.elements['toPartnerId'].text
	end
end