class Kaltura::KalturaResponseProfileMapping

Attributes

allow_null[RW]
filter_property[RW]
parent_property[RW]

Public Instance Methods

allow_null=(val) click to toggle source
# File lib/kaltura_types.rb, line 4115
def allow_null=(val)
        @allow_null = to_b(val)
end
from_xml(xml_element) click to toggle source
Calls superclass method Kaltura::KalturaObjectBase#from_xml
# File lib/kaltura_types.rb, line 4119
def from_xml(xml_element)
        super
        if xml_element.elements['parentProperty'] != nil
                self.parent_property = xml_element.elements['parentProperty'].text
        end
        if xml_element.elements['filterProperty'] != nil
                self.filter_property = xml_element.elements['filterProperty'].text
        end
        if xml_element.elements['allowNull'] != nil
                self.allow_null = xml_element.elements['allowNull'].text
        end
end