class Kaltura::KalturaCopyPartnerJobData

Attributes

from_partner_id[RW]

Id of the partner to copy from

to_partner_id[RW]

Id of the partner to copy to

Public Instance Methods

from_partner_id=(val) click to toggle source
# File lib/kaltura_types.rb, line 12458
def from_partner_id=(val)
        @from_partner_id = val.to_i
end
from_xml(xml_element) click to toggle source
Calls superclass method Kaltura::KalturaJobData#from_xml
# File lib/kaltura_types.rb, line 12465
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
to_partner_id=(val) click to toggle source
# File lib/kaltura_types.rb, line 12461
def to_partner_id=(val)
        @to_partner_id = val.to_i
end