Class: Kaltura::KalturaLiveReportExportJobData
- Inherits:
-
KalturaJobData
- Object
- KalturaObjectBase
- KalturaJobData
- Kaltura::KalturaLiveReportExportJobData
- Defined in:
- lib/kaltura_types.rb
Instance Attribute Summary collapse
-
#entry_ids ⇒ Object
Returns the value of attribute entry_ids.
-
#output_path ⇒ Object
Returns the value of attribute output_path.
-
#recipient_email ⇒ Object
Returns the value of attribute recipient_email.
-
#time_reference ⇒ Object
Returns the value of attribute time_reference.
-
#time_zone_offset ⇒ Object
Returns the value of attribute time_zone_offset.
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#entry_ids ⇒ Object
Returns the value of attribute entry_ids.
13591 13592 13593 |
# File 'lib/kaltura_types.rb', line 13591 def entry_ids @entry_ids end |
#output_path ⇒ Object
Returns the value of attribute output_path.
13592 13593 13594 |
# File 'lib/kaltura_types.rb', line 13592 def output_path @output_path end |
#recipient_email ⇒ Object
Returns the value of attribute recipient_email.
13593 13594 13595 |
# File 'lib/kaltura_types.rb', line 13593 def recipient_email @recipient_email end |
#time_reference ⇒ Object
Returns the value of attribute time_reference.
13589 13590 13591 |
# File 'lib/kaltura_types.rb', line 13589 def time_reference @time_reference end |
#time_zone_offset ⇒ Object
Returns the value of attribute time_zone_offset.
13590 13591 13592 |
# File 'lib/kaltura_types.rb', line 13590 def time_zone_offset @time_zone_offset end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
13602 13603 13604 13605 13606 13607 13608 13609 13610 13611 13612 13613 13614 13615 13616 13617 13618 13619 |
# File 'lib/kaltura_types.rb', line 13602 def from_xml(xml_element) super if xml_element.elements['timeReference'] != nil self.time_reference = xml_element.elements['timeReference'].text end if xml_element.elements['timeZoneOffset'] != nil self.time_zone_offset = xml_element.elements['timeZoneOffset'].text end if xml_element.elements['entryIds'] != nil self.entry_ids = xml_element.elements['entryIds'].text end if xml_element.elements['outputPath'] != nil self.output_path = xml_element.elements['outputPath'].text end if xml_element.elements['recipientEmail'] != nil self.recipient_email = xml_element.elements['recipientEmail'].text end end |