Class: Kaltura::KalturaHashCondition

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

Instance Attribute Summary collapse

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

#hash_nameObject

hash name



13115
13116
13117
# File 'lib/kaltura_types.rb', line 13115

def hash_name
  @hash_name
end

#hash_secretObject

hash secret



13117
13118
13119
# File 'lib/kaltura_types.rb', line 13117

def hash_secret
  @hash_secret
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



13120
13121
13122
13123
13124
13125
13126
13127
13128
# File 'lib/kaltura_types.rb', line 13120

def from_xml(xml_element)
	super
	if xml_element.elements['hashName'] != nil
		self.hash_name = xml_element.elements['hashName'].text
	end
	if xml_element.elements['hashSecret'] != nil
		self.hash_secret = xml_element.elements['hashSecret'].text
	end
end