Class: Kaltura::KalturaReportExportParams
- Inherits:
-
KalturaObjectBase
- Object
- KalturaObjectBase
- Kaltura::KalturaReportExportParams
- Defined in:
- lib/kaltura_types.rb
Instance Attribute Summary collapse
-
#recipient_email ⇒ Object
Returns the value of attribute recipient_email.
-
#report_items ⇒ Object
Returns the value of attribute report_items.
-
#reports_items_group ⇒ Object
Returns the value of attribute reports_items_group.
-
#time_zone_offset ⇒ Object
Time zone offset in minutes (between client to UTC).
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#recipient_email ⇒ Object
Returns the value of attribute recipient_email.
8740 8741 8742 |
# File 'lib/kaltura_types.rb', line 8740 def recipient_email @recipient_email end |
#report_items ⇒ Object
Returns the value of attribute report_items.
8743 8744 8745 |
# File 'lib/kaltura_types.rb', line 8743 def report_items @report_items end |
#reports_items_group ⇒ Object
Returns the value of attribute reports_items_group.
8744 8745 8746 |
# File 'lib/kaltura_types.rb', line 8744 def reports_items_group @reports_items_group end |
#time_zone_offset ⇒ Object
Time zone offset in minutes (between client to UTC)
8742 8743 8744 |
# File 'lib/kaltura_types.rb', line 8742 def time_zone_offset @time_zone_offset end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
8750 8751 8752 8753 8754 8755 8756 8757 8758 8759 8760 8761 8762 8763 8764 |
# File 'lib/kaltura_types.rb', line 8750 def from_xml(xml_element) super if xml_element.elements['recipientEmail'] != nil self.recipient_email = xml_element.elements['recipientEmail'].text end if xml_element.elements['timeZoneOffset'] != nil self.time_zone_offset = xml_element.elements['timeZoneOffset'].text end if xml_element.elements['reportItems'] != nil self.report_items = KalturaClientBase.object_from_xml(xml_element.elements['reportItems'], 'KalturaReportExportItem') end if xml_element.elements['reportsItemsGroup'] != nil self.reports_items_group = xml_element.elements['reportsItemsGroup'].text end end |