Class: Kaltura::KalturaEvalStringField
- Inherits:
-
KalturaStringField
- Object
- KalturaObjectBase
- KalturaValue
- KalturaStringValue
- KalturaStringField
- Kaltura::KalturaEvalStringField
- Defined in:
- lib/kaltura_types.rb
Overview
Evaluates PHP statement, depends on the execution context
Instance Attribute Summary collapse
-
#code ⇒ Object
PHP code.
Attributes inherited from KalturaStringValue
Attributes inherited from KalturaValue
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#code ⇒ Object
PHP code
19085 19086 19087 |
# File 'lib/kaltura_types.rb', line 19085 def code @code end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
19088 19089 19090 19091 19092 19093 |
# File 'lib/kaltura_types.rb', line 19088 def from_xml(xml_element) super if xml_element.elements['code'] != nil self.code = xml_element.elements['code'].text end end |