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.



4269
4270
4271
# File 'lib/kaltura_types.rb', line 4269

def attendance_info
  @attendance_info
end

#companyObject

Returns the value of attribute company.



4271
4272
4273
# File 'lib/kaltura_types.rb', line 4271

def company
  @company
end

#date_of_birthObject

Returns the value of attribute date_of_birth.



4258
4259
4260
# File 'lib/kaltura_types.rb', line 4258

def date_of_birth
  @date_of_birth
end

#encrypted_seedObject

Returns the value of attribute encrypted_seed.



4273
4274
4275
# File 'lib/kaltura_types.rb', line 4273

def encrypted_seed
  @encrypted_seed
end

#first_nameObject

Returns the value of attribute first_name.



4265
4266
4267
# File 'lib/kaltura_types.rb', line 4265

def first_name
  @first_name
end

#genderObject

Returns the value of attribute gender.



4259
4260
4261
# File 'lib/kaltura_types.rb', line 4259

def gender
  @gender
end

#is_account_ownerObject

Returns the value of attribute is_account_owner.



4263
4264
4265
# File 'lib/kaltura_types.rb', line 4263

def 
  @is_account_owner
end

#is_adminObject

Returns the value of attribute is_admin.



4260
4261
4262
# File 'lib/kaltura_types.rb', line 4260

def is_admin
  @is_admin
end

#is_sso_excludedObject

Returns the value of attribute is_sso_excluded.



4274
4275
4276
# File 'lib/kaltura_types.rb', line 4274

def is_sso_excluded
  @is_sso_excluded
end

#ks_privilegesObject

Returns the value of attribute ks_privileges.



4272
4273
4274
# File 'lib/kaltura_types.rb', line 4272

def ks_privileges
  @ks_privileges
end

#last_nameObject

Returns the value of attribute last_name.



4266
4267
4268
# File 'lib/kaltura_types.rb', line 4266

def last_name
  @last_name
end

#login_enabledObject

Returns the value of attribute login_enabled.



4267
4268
4269
# File 'lib/kaltura_types.rb', line 4267

def 
  @login_enabled
end

#passwordObject

Returns the value of attribute password.



4264
4265
4266
# File 'lib/kaltura_types.rb', line 4264

def password
  @password
end

#registration_infoObject

Returns the value of attribute registration_info.



4268
4269
4270
# File 'lib/kaltura_types.rb', line 4268

def registration_info
  @registration_info
end

#role_idsObject

Returns the value of attribute role_ids.



4261
4262
4263
# File 'lib/kaltura_types.rb', line 4261

def role_ids
  @role_ids
end

#role_namesObject

Returns the value of attribute role_names.



4262
4263
4264
# File 'lib/kaltura_types.rb', line 4262

def role_names
  @role_names
end

#titleObject

Returns the value of attribute title.



4270
4271
4272
# File 'lib/kaltura_types.rb', line 4270

def title
  @title
end

#typeObject

Returns the value of attribute type.



4257
4258
4259
# File 'lib/kaltura_types.rb', line 4257

def type
  @type
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
# File 'lib/kaltura_types.rb', line 4298

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