Class: Kaltura::KalturaHttpHeaderCondition

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

Instance Attribute Summary collapse

Attributes inherited from KalturaMatchCondition

#match_type, #values

Attributes inherited from KalturaCondition

#description, #not, #type

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#header_nameObject

header name



18414
18415
18416
# File 'lib/kaltura_types.rb', line 18414

def header_name
  @header_name
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



18417
18418
18419
18420
18421
18422
# File 'lib/kaltura_types.rb', line 18417

def from_xml(xml_element)
	super
	if xml_element.elements['headerName'] != nil
		self.header_name = xml_element.elements['headerName'].text
	end
end