Class: Kaltura::KalturaBulkUploadResultUser

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

Instance Attribute Summary collapse

Attributes inherited from KalturaBulkUploadResult

#action, #bulk_upload_job_id, #bulk_upload_result_object_type, #error_code, #error_description, #error_type, #id, #line_index, #object_error_description, #object_id, #object_status, #partner_data, #partner_id, #plugins_data, #row_data, #status

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#cityObject

Returns the value of attribute city.



11219
11220
11221
# File 'lib/kaltura_types.rb', line 11219

def city
  @city
end

#countryObject

Returns the value of attribute country.



11217
11218
11219
# File 'lib/kaltura_types.rb', line 11217

def country
  @country
end

#date_of_birthObject

Returns the value of attribute date_of_birth.



11216
11217
11218
# File 'lib/kaltura_types.rb', line 11216

def date_of_birth
  @date_of_birth
end

#descriptionObject

Returns the value of attribute description.



11214
11215
11216
# File 'lib/kaltura_types.rb', line 11214

def description
  @description
end

#emailObject

Returns the value of attribute email.



11213
11214
11215
# File 'lib/kaltura_types.rb', line 11213

def email
  @email
end

#first_nameObject

Returns the value of attribute first_name.



11222
11223
11224
# File 'lib/kaltura_types.rb', line 11222

def first_name
  @first_name
end

#genderObject

Returns the value of attribute gender.



11221
11222
11223
# File 'lib/kaltura_types.rb', line 11221

def gender
  @gender
end

#groupObject

Returns the value of attribute group.



11224
11225
11226
# File 'lib/kaltura_types.rb', line 11224

def group
  @group
end

#last_nameObject

Returns the value of attribute last_name.



11223
11224
11225
# File 'lib/kaltura_types.rb', line 11223

def last_name
  @last_name
end

#screen_nameObject

Returns the value of attribute screen_name.



11212
11213
11214
# File 'lib/kaltura_types.rb', line 11212

def screen_name
  @screen_name
end

#stateObject

Returns the value of attribute state.



11218
11219
11220
# File 'lib/kaltura_types.rb', line 11218

def state
  @state
end

#tagsObject

Returns the value of attribute tags.



11215
11216
11217
# File 'lib/kaltura_types.rb', line 11215

def tags
  @tags
end

#user_idObject

Returns the value of attribute user_id.



11211
11212
11213
# File 'lib/kaltura_types.rb', line 11211

def user_id
  @user_id
end

#zipObject

Returns the value of attribute zip.



11220
11221
11222
# File 'lib/kaltura_types.rb', line 11220

def zip
  @zip
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



11233
11234
11235
11236
11237
11238
11239
11240
11241
11242
11243
11244
11245
11246
11247
11248
11249
11250
11251
11252
11253
11254
11255
11256
11257
11258
11259
11260
11261
11262
11263
11264
11265
11266
11267
11268
11269
11270
11271
11272
11273
11274
11275
11276
11277
# File 'lib/kaltura_types.rb', line 11233

def from_xml(xml_element)
	super
	if xml_element.elements['userId'] != nil
		self.user_id = xml_element.elements['userId'].text
	end
	if xml_element.elements['screenName'] != nil
		self.screen_name = xml_element.elements['screenName'].text
	end
	if xml_element.elements['email'] != nil
		self.email = xml_element.elements['email'].text
	end
	if xml_element.elements['description'] != nil
		self.description = xml_element.elements['description'].text
	end
	if xml_element.elements['tags'] != nil
		self.tags = xml_element.elements['tags'].text
	end
	if xml_element.elements['dateOfBirth'] != nil
		self.date_of_birth = xml_element.elements['dateOfBirth'].text
	end
	if xml_element.elements['country'] != nil
		self.country = xml_element.elements['country'].text
	end
	if xml_element.elements['state'] != nil
		self.state = xml_element.elements['state'].text
	end
	if xml_element.elements['city'] != nil
		self.city = xml_element.elements['city'].text
	end
	if xml_element.elements['zip'] != nil
		self.zip = xml_element.elements['zip'].text
	end
	if xml_element.elements['gender'] != nil
		self.gender = xml_element.elements['gender'].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['group'] != nil
		self.group = xml_element.elements['group'].text
	end
end