Class: Kaltura::KalturaUserRole

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

Instance Attribute Summary collapse

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

Returns the value of attribute created_at.



10301
10302
10303
# File 'lib/kaltura_types.rb', line 10301

def created_at
  @created_at
end

#descriptionObject

Returns the value of attribute description.



10296
10297
10298
# File 'lib/kaltura_types.rb', line 10296

def description
  @description
end

#idObject

Returns the value of attribute id.



10293
10294
10295
# File 'lib/kaltura_types.rb', line 10293

def id
  @id
end

#nameObject

Returns the value of attribute name.



10294
10295
10296
# File 'lib/kaltura_types.rb', line 10294

def name
  @name
end

#partner_idObject

Returns the value of attribute partner_id.



10298
10299
10300
# File 'lib/kaltura_types.rb', line 10298

def partner_id
  @partner_id
end

#permission_namesObject

Returns the value of attribute permission_names.



10299
10300
10301
# File 'lib/kaltura_types.rb', line 10299

def permission_names
  @permission_names
end

#statusObject

Returns the value of attribute status.



10297
10298
10299
# File 'lib/kaltura_types.rb', line 10297

def status
  @status
end

#system_nameObject

Returns the value of attribute system_name.



10295
10296
10297
# File 'lib/kaltura_types.rb', line 10295

def system_name
  @system_name
end

#tagsObject

Returns the value of attribute tags.



10300
10301
10302
# File 'lib/kaltura_types.rb', line 10300

def tags
  @tags
end

#updated_atObject

Returns the value of attribute updated_at.



10302
10303
10304
# File 'lib/kaltura_types.rb', line 10302

def updated_at
  @updated_at
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



10320
10321
10322
10323
10324
10325
10326
10327
10328
10329
10330
10331
10332
10333
10334
10335
10336
10337
10338
10339
10340
10341
10342
10343
10344
10345
10346
10347
10348
10349
10350
10351
10352
# File 'lib/kaltura_types.rb', line 10320

def from_xml(xml_element)
	super
	if xml_element.elements['id'] != nil
		self.id = xml_element.elements['id'].text
	end
	if xml_element.elements['name'] != nil
		self.name = xml_element.elements['name'].text
	end
	if xml_element.elements['systemName'] != nil
		self.system_name = xml_element.elements['systemName'].text
	end
	if xml_element.elements['description'] != nil
		self.description = xml_element.elements['description'].text
	end
	if xml_element.elements['status'] != nil
		self.status = xml_element.elements['status'].text
	end
	if xml_element.elements['partnerId'] != nil
		self.partner_id = xml_element.elements['partnerId'].text
	end
	if xml_element.elements['permissionNames'] != nil
		self.permission_names = xml_element.elements['permissionNames'].text
	end
	if xml_element.elements['tags'] != nil
		self.tags = xml_element.elements['tags'].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
end