Class: Kaltura::KalturaBulkUploadPluginData
- Inherits:
-
KalturaObjectBase
- Object
- KalturaObjectBase
- Kaltura::KalturaBulkUploadPluginData
- Defined in:
- lib/kaltura_types.rb
Instance Attribute Summary collapse
-
#field ⇒ Object
Returns the value of attribute field.
-
#value ⇒ Object
Returns the value of attribute value.
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#field ⇒ Object
Returns the value of attribute field.
2282 2283 2284 |
# File 'lib/kaltura_types.rb', line 2282 def field @field end |
#value ⇒ Object
Returns the value of attribute value.
2283 2284 2285 |
# File 'lib/kaltura_types.rb', line 2283 def value @value end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
2286 2287 2288 2289 2290 2291 2292 2293 2294 |
# File 'lib/kaltura_types.rb', line 2286 def from_xml(xml_element) super if xml_element.elements['field'] != nil self.field = xml_element.elements['field'].text end if xml_element.elements['value'] != nil self.value = xml_element.elements['value'].text end end |