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)



5092
5093
5094
# File 'lib/kaltura_types.rb', line 5092

def created_at
  @created_at
end

#idObject

Auto generated numeric identifier



5085
5086
5087
# File 'lib/kaltura_types.rb', line 5085

def id
  @id
end

#partner_idObject

Returns the value of attribute partner_id.



5089
5090
5091
# File 'lib/kaltura_types.rb', line 5089

def partner_id
  @partner_id
end

#statusObject

Returns the value of attribute status.



5096
5097
5098
# File 'lib/kaltura_types.rb', line 5096

def status
  @status
end

#system_nameObject

Unique system name



5088
5089
5090
# File 'lib/kaltura_types.rb', line 5088

def system_name
  @system_name
end

#updated_atObject

Update time as Unix timestamp (In seconds)



5095
5096
5097
# File 'lib/kaltura_types.rb', line 5095

def updated_at
  @updated_at
end

#versionObject

Returns the value of attribute version.



5097
5098
5099
# File 'lib/kaltura_types.rb', line 5097

def version
  @version
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
# File 'lib/kaltura_types.rb', line 5118

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