Class: Kaltura::KalturaCopyPartnerJobData
- Inherits:
-
KalturaJobData
- Object
- KalturaObjectBase
- KalturaJobData
- Kaltura::KalturaCopyPartnerJobData
- Defined in:
- lib/kaltura_types.rb
Instance Attribute Summary collapse
-
#from_partner_id ⇒ Object
Id of the partner to copy from.
-
#to_partner_id ⇒ Object
Id of the partner to copy to.
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#from_partner_id ⇒ Object
Id of the partner to copy from
8142 8143 8144 |
# File 'lib/kaltura_types.rb', line 8142 def from_partner_id @from_partner_id end |
#to_partner_id ⇒ Object
Id of the partner to copy to
8145 8146 8147 |
# File 'lib/kaltura_types.rb', line 8145 def to_partner_id @to_partner_id end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
8154 8155 8156 8157 8158 |
# File 'lib/kaltura_types.rb', line 8154 def from_xml(xml_element) super self.from_partner_id = xml_element.elements['fromPartnerId'].text self.to_partner_id = xml_element.elements['toPartnerId'].text end |