Class: Kaltura::KalturaStringResource
- Inherits:
-
KalturaContentResource
- Object
- KalturaObjectBase
- KalturaResource
- KalturaContentResource
- Kaltura::KalturaStringResource
- Defined in:
- lib/kaltura_types.rb
Overview
Used to ingest string content.
Instance Attribute Summary collapse
-
#content ⇒ Object
Textual content.
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#content ⇒ Object
Textual content
18555 18556 18557 |
# File 'lib/kaltura_types.rb', line 18555 def content @content end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
18558 18559 18560 18561 18562 18563 |
# File 'lib/kaltura_types.rb', line 18558 def from_xml(xml_element) super if xml_element.elements['content'] != nil self.content = xml_element.elements['content'].text end end |