Class: Kaltura::KalturaAuditTrailFileSyncCreateInfo

Inherits:
KalturaAuditTrailInfo show all
Defined in:
lib/kaltura_plugins/kaltura_audit_client_plugin.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

#dcObject

Returns the value of attribute dc.



299
300
301
# File 'lib/kaltura_plugins/kaltura_audit_client_plugin.rb', line 299

def dc
  @dc
end

#file_typeObject

Returns the value of attribute file_type.



301
302
303
# File 'lib/kaltura_plugins/kaltura_audit_client_plugin.rb', line 301

def file_type
  @file_type
end

#object_sub_typeObject

Returns the value of attribute object_sub_type.



298
299
300
# File 'lib/kaltura_plugins/kaltura_audit_client_plugin.rb', line 298

def object_sub_type
  @object_sub_type
end

#originalObject

Returns the value of attribute original.



300
301
302
# File 'lib/kaltura_plugins/kaltura_audit_client_plugin.rb', line 300

def original
  @original
end

#versionObject

Returns the value of attribute version.



297
298
299
# File 'lib/kaltura_plugins/kaltura_audit_client_plugin.rb', line 297

def version
  @version
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
# File 'lib/kaltura_plugins/kaltura_audit_client_plugin.rb', line 316

def from_xml(xml_element)
	super
	if xml_element.elements['version'] != nil
		self.version = xml_element.elements['version'].text
	end
	if xml_element.elements['objectSubType'] != nil
		self.object_sub_type = xml_element.elements['objectSubType'].text
	end
	if xml_element.elements['dc'] != nil
		self.dc = xml_element.elements['dc'].text
	end
	if xml_element.elements['original'] != nil
		self.original = xml_element.elements['original'].text
	end
	if xml_element.elements['fileType'] != nil
		self.file_type = xml_element.elements['fileType'].text
	end
end