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.
-
#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.
8608 8609 8610 |
# File 'lib/kaltura_types.rb', line 8608 def recipient_email @recipient_email end |
#report_items ⇒ Object
Returns the value of attribute report_items.
8611 8612 8613 |
# File 'lib/kaltura_types.rb', line 8611 def report_items @report_items end |
#time_zone_offset ⇒ Object
Time zone offset in minutes (between client to UTC)
8610 8611 8612 |
# File 'lib/kaltura_types.rb', line 8610 def time_zone_offset @time_zone_offset end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
8617 8618 8619 8620 8621 8622 8623 8624 8625 8626 8627 8628 |
# File 'lib/kaltura_types.rb', line 8617 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 end |