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.
8804 8805 8806 |
# File 'lib/kaltura_types.rb', line 8804 def action @action end |
#filter ⇒ Object
Returns the value of attribute filter.
8806 8807 8808 |
# File 'lib/kaltura_types.rb', line 8806 def filter @filter end |
#object_ids ⇒ Object
Returns the value of attribute object_ids.
8808 8809 8810 |
# File 'lib/kaltura_types.rb', line 8808 def object_ids @object_ids end |
#order ⇒ Object
Returns the value of attribute order.
8807 8808 8809 |
# File 'lib/kaltura_types.rb', line 8807 def order @order end |
#report_title ⇒ Object
Returns the value of attribute report_title.
8803 8804 8805 |
# File 'lib/kaltura_types.rb', line 8803 def report_title @report_title end |
#report_type ⇒ Object
Returns the value of attribute report_type.
8805 8806 8807 |
# File 'lib/kaltura_types.rb', line 8805 def report_type @report_type end |
#response_options ⇒ Object
Returns the value of attribute response_options.
8809 8810 8811 |
# File 'lib/kaltura_types.rb', line 8809 def end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
8815 8816 8817 8818 8819 8820 8821 8822 8823 8824 8825 8826 8827 8828 8829 8830 8831 8832 8833 8834 8835 8836 8837 8838 |
# File 'lib/kaltura_types.rb', line 8815 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 |