Class: Kaltura::KalturaHashCondition
- Inherits:
-
KalturaCondition
- Object
- KalturaObjectBase
- KalturaCondition
- Kaltura::KalturaHashCondition
- Defined in:
- lib/kaltura_types.rb
Instance Attribute Summary collapse
-
#hash_name ⇒ Object
hash name.
-
#hash_secret ⇒ Object
hash secret.
Attributes inherited from KalturaCondition
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#hash_name ⇒ Object
hash name
13882 13883 13884 |
# File 'lib/kaltura_types.rb', line 13882 def hash_name @hash_name end |
#hash_secret ⇒ Object
hash secret
13884 13885 13886 |
# File 'lib/kaltura_types.rb', line 13884 def hash_secret @hash_secret end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
13887 13888 13889 13890 13891 13892 13893 13894 13895 |
# File 'lib/kaltura_types.rb', line 13887 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 |