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)



8935
8936
8937
# File 'lib/kaltura_types.rb', line 8935

def created_at
  @created_at
end

#idObject

Auto generated numeric identifier



8930
8931
8932
# File 'lib/kaltura_types.rb', line 8930

def id
  @id
end

#partner_idObject

Returns the value of attribute partner_id.



8933
8934
8935
# File 'lib/kaltura_types.rb', line 8933

def partner_id
  @partner_id
end

#statusObject

Returns the value of attribute status.



8938
8939
8940
# File 'lib/kaltura_types.rb', line 8938

def status
  @status
end

#system_nameObject

Unique system name



8932
8933
8934
# File 'lib/kaltura_types.rb', line 8932

def system_name
  @system_name
end

#updated_atObject

Update time as Unix timestamp (In seconds)



8937
8938
8939
# File 'lib/kaltura_types.rb', line 8937

def updated_at
  @updated_at
end

#versionObject

Returns the value of attribute version.



8939
8940
8941
# File 'lib/kaltura_types.rb', line 8939

def version
  @version
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



8960
8961
8962
8963
8964
8965
8966
8967
8968
8969
8970
8971
8972
8973
8974
8975
8976
8977
8978
8979
8980
8981
8982
8983
# File 'lib/kaltura_types.rb', line 8960

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