Class: Kaltura::KalturaResponseProfileMapping

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

Direct Known Subclasses

KalturaMetadataResponseProfileMapping

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

#allow_nullObject

Returns the value of attribute allow_null.



3986
3987
3988
# File 'lib/kaltura_types.rb', line 3986

def allow_null
  @allow_null
end

#filter_propertyObject

Returns the value of attribute filter_property.



3985
3986
3987
# File 'lib/kaltura_types.rb', line 3985

def filter_property
  @filter_property
end

#parent_propertyObject

Returns the value of attribute parent_property.



3984
3985
3986
# File 'lib/kaltura_types.rb', line 3984

def parent_property
  @parent_property
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
# File 'lib/kaltura_types.rb', line 3992

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