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)



8811
8812
8813
# File 'lib/kaltura_types.rb', line 8811

def created_at
  @created_at
end

#idObject

Auto generated numeric identifier



8806
8807
8808
# File 'lib/kaltura_types.rb', line 8806

def id
  @id
end

#partner_idObject

Returns the value of attribute partner_id.



8809
8810
8811
# File 'lib/kaltura_types.rb', line 8809

def partner_id
  @partner_id
end

#statusObject

Returns the value of attribute status.



8814
8815
8816
# File 'lib/kaltura_types.rb', line 8814

def status
  @status
end

#system_nameObject

Unique system name



8808
8809
8810
# File 'lib/kaltura_types.rb', line 8808

def system_name
  @system_name
end

#updated_atObject

Update time as Unix timestamp (In seconds)



8813
8814
8815
# File 'lib/kaltura_types.rb', line 8813

def updated_at
  @updated_at
end

#versionObject

Returns the value of attribute version.



8815
8816
8817
# File 'lib/kaltura_types.rb', line 8815

def version
  @version
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



8836
8837
8838
8839
8840
8841
8842
8843
8844
8845
8846
8847
8848
8849
8850
8851
8852
8853
8854
8855
8856
8857
8858
8859
# File 'lib/kaltura_types.rb', line 8836

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