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.
14156 14157 14158 |
# File 'lib/kaltura_types.rb', line 14156 def entry_ids @entry_ids end |
#output_path ⇒ Object
Returns the value of attribute output_path.
14157 14158 14159 |
# File 'lib/kaltura_types.rb', line 14157 def output_path @output_path end |
#recipient_email ⇒ Object
Returns the value of attribute recipient_email.
14158 14159 14160 |
# File 'lib/kaltura_types.rb', line 14158 def recipient_email @recipient_email end |
#time_reference ⇒ Object
Returns the value of attribute time_reference.
14154 14155 14156 |
# File 'lib/kaltura_types.rb', line 14154 def time_reference @time_reference end |
#time_zone_offset ⇒ Object
Returns the value of attribute time_zone_offset.
14155 14156 14157 |
# File 'lib/kaltura_types.rb', line 14155 def time_zone_offset @time_zone_offset end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
14167 14168 14169 14170 14171 14172 14173 14174 14175 14176 14177 14178 14179 14180 14181 14182 14183 14184 |
# File 'lib/kaltura_types.rb', line 14167 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 |