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)



9103
9104
9105
# File 'lib/kaltura_types.rb', line 9103

def created_at
  @created_at
end

#idObject

Auto generated numeric identifier



9098
9099
9100
# File 'lib/kaltura_types.rb', line 9098

def id
  @id
end

#partner_idObject

Returns the value of attribute partner_id.



9101
9102
9103
# File 'lib/kaltura_types.rb', line 9101

def partner_id
  @partner_id
end

#statusObject

Returns the value of attribute status.



9106
9107
9108
# File 'lib/kaltura_types.rb', line 9106

def status
  @status
end

#system_nameObject

Unique system name



9100
9101
9102
# File 'lib/kaltura_types.rb', line 9100

def system_name
  @system_name
end

#updated_atObject

Update time as Unix timestamp (In seconds)



9105
9106
9107
# File 'lib/kaltura_types.rb', line 9105

def updated_at
  @updated_at
end

#versionObject

Returns the value of attribute version.



9107
9108
9109
# File 'lib/kaltura_types.rb', line 9107

def version
  @version
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



9128
9129
9130
9131
9132
9133
9134
9135
9136
9137
9138
9139
9140
9141
9142
9143
9144
9145
9146
9147
9148
9149
9150
9151
# File 'lib/kaltura_types.rb', line 9128

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