Class: Kaltura::KalturaReportExportParams

Inherits:
KalturaObjectBase 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

#recipient_emailObject

Returns the value of attribute recipient_email.



8368
8369
8370
# File 'lib/kaltura_types.rb', line 8368

def recipient_email
  @recipient_email
end

#report_itemsObject

Returns the value of attribute report_items.



8371
8372
8373
# File 'lib/kaltura_types.rb', line 8371

def report_items
  @report_items
end

#time_zone_offsetObject

Time zone offset in minutes (between client to UTC)



8370
8371
8372
# File 'lib/kaltura_types.rb', line 8370

def time_zone_offset
  @time_zone_offset
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



8377
8378
8379
8380
8381
8382
8383
8384
8385
8386
8387
8388
# File 'lib/kaltura_types.rb', line 8377

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