Class: Kaltura::KalturaReportExportItem
- Inherits:
-
KalturaObjectBase
- Object
- KalturaObjectBase
- Kaltura::KalturaReportExportItem
- Defined in:
- lib/kaltura_types.rb
Instance Attribute Summary collapse
-
#action ⇒ Object
Returns the value of attribute action.
-
#filter ⇒ Object
Returns the value of attribute filter.
-
#object_ids ⇒ Object
Returns the value of attribute object_ids.
-
#order ⇒ Object
Returns the value of attribute order.
-
#report_title ⇒ Object
Returns the value of attribute report_title.
-
#report_type ⇒ Object
Returns the value of attribute report_type.
-
#response_options ⇒ Object
Returns the value of attribute response_options.
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#action ⇒ Object
Returns the value of attribute action.
8569 8570 8571 |
# File 'lib/kaltura_types.rb', line 8569 def action @action end |
#filter ⇒ Object
Returns the value of attribute filter.
8571 8572 8573 |
# File 'lib/kaltura_types.rb', line 8571 def filter @filter end |
#object_ids ⇒ Object
Returns the value of attribute object_ids.
8573 8574 8575 |
# File 'lib/kaltura_types.rb', line 8573 def object_ids @object_ids end |
#order ⇒ Object
Returns the value of attribute order.
8572 8573 8574 |
# File 'lib/kaltura_types.rb', line 8572 def order @order end |
#report_title ⇒ Object
Returns the value of attribute report_title.
8568 8569 8570 |
# File 'lib/kaltura_types.rb', line 8568 def report_title @report_title end |
#report_type ⇒ Object
Returns the value of attribute report_type.
8570 8571 8572 |
# File 'lib/kaltura_types.rb', line 8570 def report_type @report_type end |
#response_options ⇒ Object
Returns the value of attribute response_options.
8574 8575 8576 |
# File 'lib/kaltura_types.rb', line 8574 def end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
8580 8581 8582 8583 8584 8585 8586 8587 8588 8589 8590 8591 8592 8593 8594 8595 8596 8597 8598 8599 8600 8601 8602 8603 |
# File 'lib/kaltura_types.rb', line 8580 def from_xml(xml_element) super if xml_element.elements['reportTitle'] != nil self.report_title = xml_element.elements['reportTitle'].text end if xml_element.elements['action'] != nil self.action = xml_element.elements['action'].text end if xml_element.elements['reportType'] != nil self.report_type = xml_element.elements['reportType'].text end if xml_element.elements['filter'] != nil self.filter = KalturaClientBase.object_from_xml(xml_element.elements['filter'], 'KalturaReportInputFilter') end if xml_element.elements['order'] != nil self.order = xml_element.elements['order'].text end if xml_element.elements['objectIds'] != nil self.object_ids = xml_element.elements['objectIds'].text end if xml_element.elements['responseOptions'] != nil self. = KalturaClientBase.object_from_xml(xml_element.elements['responseOptions'], 'KalturaReportResponseOptions') end end |