class Kaltura::KalturaHashCondition
Attributes
hash_name[RW]
hash name
hash_secret[RW]
hash secret
Public Instance Methods
from_xml(xml_element)
click to toggle source
Calls superclass method
Kaltura::KalturaCondition#from_xml
# File lib/kaltura_types.rb, line 13678 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