Class: Kaltura::KalturaResponseProfile

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

Instance Attribute Summary collapse

Attributes inherited from KalturaDetachedResponseProfile

#fields, #filter, #mappings, #name, #pager, #related_profiles, #type

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#created_atObject

Creation time as Unix timestamp (In seconds)



8523
8524
8525
# File 'lib/kaltura_types.rb', line 8523

def created_at
  @created_at
end

#idObject

Auto generated numeric identifier



8518
8519
8520
# File 'lib/kaltura_types.rb', line 8518

def id
  @id
end

#partner_idObject

Returns the value of attribute partner_id.



8521
8522
8523
# File 'lib/kaltura_types.rb', line 8521

def partner_id
  @partner_id
end

#statusObject

Returns the value of attribute status.



8526
8527
8528
# File 'lib/kaltura_types.rb', line 8526

def status
  @status
end

#system_nameObject

Unique system name



8520
8521
8522
# File 'lib/kaltura_types.rb', line 8520

def system_name
  @system_name
end

#updated_atObject

Update time as Unix timestamp (In seconds)



8525
8526
8527
# File 'lib/kaltura_types.rb', line 8525

def updated_at
  @updated_at
end

#versionObject

Returns the value of attribute version.



8527
8528
8529
# File 'lib/kaltura_types.rb', line 8527

def version
  @version
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



8548
8549
8550
8551
8552
8553
8554
8555
8556
8557
8558
8559
8560
8561
8562
8563
8564
8565
8566
8567
8568
8569
8570
8571
# File 'lib/kaltura_types.rb', line 8548

def from_xml(xml_element)
	super
	if xml_element.elements['id'] != nil
		self.id = xml_element.elements['id'].text
	end
	if xml_element.elements['systemName'] != nil
		self.system_name = xml_element.elements['systemName'].text
	end
	if xml_element.elements['partnerId'] != nil
		self.partner_id = xml_element.elements['partnerId'].text
	end
	if xml_element.elements['createdAt'] != nil
		self.created_at = xml_element.elements['createdAt'].text
	end
	if xml_element.elements['updatedAt'] != nil
		self.updated_at = xml_element.elements['updatedAt'].text
	end
	if xml_element.elements['status'] != nil
		self.status = xml_element.elements['status'].text
	end
	if xml_element.elements['version'] != nil
		self.version = xml_element.elements['version'].text
	end
end