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.
8737 8738 8739 |
# File 'lib/kaltura_types.rb', line 8737 def action @action end |
#filter ⇒ Object
Returns the value of attribute filter.
8739 8740 8741 |
# File 'lib/kaltura_types.rb', line 8739 def filter @filter end |
#object_ids ⇒ Object
Returns the value of attribute object_ids.
8741 8742 8743 |
# File 'lib/kaltura_types.rb', line 8741 def object_ids @object_ids end |
#order ⇒ Object
Returns the value of attribute order.
8740 8741 8742 |
# File 'lib/kaltura_types.rb', line 8740 def order @order end |
#report_title ⇒ Object
Returns the value of attribute report_title.
8736 8737 8738 |
# File 'lib/kaltura_types.rb', line 8736 def report_title @report_title end |
#report_type ⇒ Object
Returns the value of attribute report_type.
8738 8739 8740 |
# File 'lib/kaltura_types.rb', line 8738 def report_type @report_type end |
#response_options ⇒ Object
Returns the value of attribute response_options.
8742 8743 8744 |
# File 'lib/kaltura_types.rb', line 8742 def @response_options end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
8748 8749 8750 8751 8752 8753 8754 8755 8756 8757 8758 8759 8760 8761 8762 8763 8764 8765 8766 8767 8768 8769 8770 8771 |
# File 'lib/kaltura_types.rb', line 8748 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 |