Class: Kaltura::KalturaUser

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

Direct Known Subclasses

KalturaAdminUser

Instance Attribute Summary collapse

Attributes inherited from KalturaBaseUser

#admin_tags, #allowed_partner_ids, #allowed_partner_packages, #city, #country, #created_at, #deleted_at, #description, #email, #full_name, #id, #indexed_partner_data_int, #indexed_partner_data_string, #language, #last_login_time, #partner_data, #partner_id, #screen_name, #state, #status, #status_updated_at, #storage_size, #tags, #thumbnail_url, #updated_at, #user_mode, #zip

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#attendance_infoObject

Returns the value of attribute attendance_info.



4308
4309
4310
# File 'lib/kaltura_types.rb', line 4308

def attendance_info
  @attendance_info
end

#companyObject

Returns the value of attribute company.



4310
4311
4312
# File 'lib/kaltura_types.rb', line 4310

def company
  @company
end

#date_of_birthObject

Returns the value of attribute date_of_birth.



4297
4298
4299
# File 'lib/kaltura_types.rb', line 4297

def date_of_birth
  @date_of_birth
end

#encrypted_seedObject

Returns the value of attribute encrypted_seed.



4312
4313
4314
# File 'lib/kaltura_types.rb', line 4312

def encrypted_seed
  @encrypted_seed
end

#first_nameObject

Returns the value of attribute first_name.



4304
4305
4306
# File 'lib/kaltura_types.rb', line 4304

def first_name
  @first_name
end

#genderObject

Returns the value of attribute gender.



4298
4299
4300
# File 'lib/kaltura_types.rb', line 4298

def gender
  @gender
end

#is_account_ownerObject

Returns the value of attribute is_account_owner.



4302
4303
4304
# File 'lib/kaltura_types.rb', line 4302

def 
  @is_account_owner
end

#is_adminObject

Returns the value of attribute is_admin.



4299
4300
4301
# File 'lib/kaltura_types.rb', line 4299

def is_admin
  @is_admin
end

#is_sso_excludedObject

Returns the value of attribute is_sso_excluded.



4313
4314
4315
# File 'lib/kaltura_types.rb', line 4313

def is_sso_excluded
  @is_sso_excluded
end

#ks_privilegesObject

Returns the value of attribute ks_privileges.



4311
4312
4313
# File 'lib/kaltura_types.rb', line 4311

def ks_privileges
  @ks_privileges
end

#last_nameObject

Returns the value of attribute last_name.



4305
4306
4307
# File 'lib/kaltura_types.rb', line 4305

def last_name
  @last_name
end

#login_enabledObject

Returns the value of attribute login_enabled.



4306
4307
4308
# File 'lib/kaltura_types.rb', line 4306

def 
  @login_enabled
end

#passwordObject

Returns the value of attribute password.



4303
4304
4305
# File 'lib/kaltura_types.rb', line 4303

def password
  @password
end

#registration_infoObject

Returns the value of attribute registration_info.



4307
4308
4309
# File 'lib/kaltura_types.rb', line 4307

def registration_info
  @registration_info
end

#role_idsObject

Returns the value of attribute role_ids.



4300
4301
4302
# File 'lib/kaltura_types.rb', line 4300

def role_ids
  @role_ids
end

#role_namesObject

Returns the value of attribute role_names.



4301
4302
4303
# File 'lib/kaltura_types.rb', line 4301

def role_names
  @role_names
end

#titleObject

Returns the value of attribute title.



4309
4310
4311
# File 'lib/kaltura_types.rb', line 4309

def title
  @title
end

#typeObject

Returns the value of attribute type.



4296
4297
4298
# File 'lib/kaltura_types.rb', line 4296

def type
  @type
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
# File 'lib/kaltura_types.rb', line 4337

def from_xml(xml_element)
	super
	if xml_element.elements['type'] != nil
		self.type = xml_element.elements['type'].text
	end
	if xml_element.elements['dateOfBirth'] != nil
		self.date_of_birth = xml_element.elements['dateOfBirth'].text
	end
	if xml_element.elements['gender'] != nil
		self.gender = xml_element.elements['gender'].text
	end
	if xml_element.elements['isAdmin'] != nil
		self.is_admin = xml_element.elements['isAdmin'].text
	end
	if xml_element.elements['roleIds'] != nil
		self.role_ids = xml_element.elements['roleIds'].text
	end
	if xml_element.elements['roleNames'] != nil
		self.role_names = xml_element.elements['roleNames'].text
	end
	if xml_element.elements['isAccountOwner'] != nil
		self. = xml_element.elements['isAccountOwner'].text
	end
	if xml_element.elements['password'] != nil
		self.password = xml_element.elements['password'].text
	end
	if xml_element.elements['firstName'] != nil
		self.first_name = xml_element.elements['firstName'].text
	end
	if xml_element.elements['lastName'] != nil
		self.last_name = xml_element.elements['lastName'].text
	end
	if xml_element.elements['loginEnabled'] != nil
		self. = xml_element.elements['loginEnabled'].text
	end
	if xml_element.elements['registrationInfo'] != nil
		self.registration_info = xml_element.elements['registrationInfo'].text
	end
	if xml_element.elements['attendanceInfo'] != nil
		self.attendance_info = xml_element.elements['attendanceInfo'].text
	end
	if xml_element.elements['title'] != nil
		self.title = xml_element.elements['title'].text
	end
	if xml_element.elements['company'] != nil
		self.company = xml_element.elements['company'].text
	end
	if xml_element.elements['ksPrivileges'] != nil
		self.ks_privileges = xml_element.elements['ksPrivileges'].text
	end
	if xml_element.elements['encryptedSeed'] != nil
		self.encrypted_seed = xml_element.elements['encryptedSeed'].text
	end
	if xml_element.elements['isSsoExcluded'] != nil
		self.is_sso_excluded = xml_element.elements['isSsoExcluded'].text
	end
end