Class: Kaltura::KalturaLiveReportExportJobData

Inherits:
KalturaJobData show all
Defined in:
lib/kaltura_types.rb

Instance Attribute Summary collapse

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#entry_idsObject

Returns the value of attribute entry_ids.



9153
9154
9155
# File 'lib/kaltura_types.rb', line 9153

def entry_ids
  @entry_ids
end

#output_pathObject

Returns the value of attribute output_path.



9154
9155
9156
# File 'lib/kaltura_types.rb', line 9154

def output_path
  @output_path
end

#recipient_emailObject

Returns the value of attribute recipient_email.



9155
9156
9157
# File 'lib/kaltura_types.rb', line 9155

def recipient_email
  @recipient_email
end

#time_referenceObject

Returns the value of attribute time_reference.



9151
9152
9153
# File 'lib/kaltura_types.rb', line 9151

def time_reference
  @time_reference
end

#time_zone_offsetObject

Returns the value of attribute time_zone_offset.



9152
9153
9154
# File 'lib/kaltura_types.rb', line 9152

def time_zone_offset
  @time_zone_offset
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



9164
9165
9166
9167
9168
9169
9170
9171
# File 'lib/kaltura_types.rb', line 9164

def from_xml(xml_element)
	super
	self.time_reference = xml_element.elements['timeReference'].text
	self.time_zone_offset = xml_element.elements['timeZoneOffset'].text
	self.entry_ids = xml_element.elements['entryIds'].text
	self.output_path = xml_element.elements['outputPath'].text
	self.recipient_email = xml_element.elements['recipientEmail'].text
end