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.



11778
11779
11780
# File 'lib/kaltura_types.rb', line 11778

def city
  @city
end

#countryObject

Returns the value of attribute country.



11776
11777
11778
# File 'lib/kaltura_types.rb', line 11776

def country
  @country
end

#date_of_birthObject

Returns the value of attribute date_of_birth.



11775
11776
11777
# File 'lib/kaltura_types.rb', line 11775

def date_of_birth
  @date_of_birth
end

#descriptionObject

Returns the value of attribute description.



11773
11774
11775
# File 'lib/kaltura_types.rb', line 11773

def description
  @description
end

#emailObject

Returns the value of attribute email.



11772
11773
11774
# File 'lib/kaltura_types.rb', line 11772

def email
  @email
end

#first_nameObject

Returns the value of attribute first_name.



11781
11782
11783
# File 'lib/kaltura_types.rb', line 11781

def first_name
  @first_name
end

#genderObject

Returns the value of attribute gender.



11780
11781
11782
# File 'lib/kaltura_types.rb', line 11780

def gender
  @gender
end

#groupObject

Returns the value of attribute group.



11783
11784
11785
# File 'lib/kaltura_types.rb', line 11783

def group
  @group
end

#last_nameObject

Returns the value of attribute last_name.



11782
11783
11784
# File 'lib/kaltura_types.rb', line 11782

def last_name
  @last_name
end

#screen_nameObject

Returns the value of attribute screen_name.



11771
11772
11773
# File 'lib/kaltura_types.rb', line 11771

def screen_name
  @screen_name
end

#stateObject

Returns the value of attribute state.



11777
11778
11779
# File 'lib/kaltura_types.rb', line 11777

def state
  @state
end

#tagsObject

Returns the value of attribute tags.



11774
11775
11776
# File 'lib/kaltura_types.rb', line 11774

def tags
  @tags
end

#user_idObject

Returns the value of attribute user_id.



11770
11771
11772
# File 'lib/kaltura_types.rb', line 11770

def user_id
  @user_id
end

#zipObject

Returns the value of attribute zip.



11779
11780
11781
# File 'lib/kaltura_types.rb', line 11779

def zip
  @zip
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



11792
11793
11794
11795
11796
11797
11798
11799
11800
11801
11802
11803
11804
11805
11806
11807
11808
11809
11810
11811
11812
11813
11814
11815
11816
11817
11818
11819
11820
11821
11822
11823
11824
11825
11826
11827
11828
11829
11830
11831
11832
11833
11834
11835
11836
# File 'lib/kaltura_types.rb', line 11792

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