Class: Kaltura::KalturaBulkUploadResultUser
- Inherits:
-
KalturaBulkUploadResult
- Object
- KalturaObjectBase
- KalturaBulkUploadResult
- Kaltura::KalturaBulkUploadResultUser
- Defined in:
- lib/kaltura_types.rb
Instance Attribute Summary collapse
-
#city ⇒ Object
Returns the value of attribute city.
-
#country ⇒ Object
Returns the value of attribute country.
-
#date_of_birth ⇒ Object
Returns the value of attribute date_of_birth.
-
#description ⇒ Object
Returns the value of attribute description.
-
#email ⇒ Object
Returns the value of attribute email.
-
#first_name ⇒ Object
Returns the value of attribute first_name.
-
#gender ⇒ Object
Returns the value of attribute gender.
-
#group ⇒ Object
Returns the value of attribute group.
-
#last_name ⇒ Object
Returns the value of attribute last_name.
-
#screen_name ⇒ Object
Returns the value of attribute screen_name.
-
#state ⇒ Object
Returns the value of attribute state.
-
#tags ⇒ Object
Returns the value of attribute tags.
-
#user_id ⇒ Object
Returns the value of attribute user_id.
-
#zip ⇒ Object
Returns the value of attribute zip.
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
Instance Attribute Details
#city ⇒ Object
Returns the value of attribute city.
11454 11455 11456 |
# File 'lib/kaltura_types.rb', line 11454 def city @city end |
#country ⇒ Object
Returns the value of attribute country.
11452 11453 11454 |
# File 'lib/kaltura_types.rb', line 11452 def country @country end |
#date_of_birth ⇒ Object
Returns the value of attribute date_of_birth.
11451 11452 11453 |
# File 'lib/kaltura_types.rb', line 11451 def date_of_birth @date_of_birth end |
#description ⇒ Object
Returns the value of attribute description.
11449 11450 11451 |
# File 'lib/kaltura_types.rb', line 11449 def description @description end |
#email ⇒ Object
Returns the value of attribute email.
11448 11449 11450 |
# File 'lib/kaltura_types.rb', line 11448 def email @email end |
#first_name ⇒ Object
Returns the value of attribute first_name.
11457 11458 11459 |
# File 'lib/kaltura_types.rb', line 11457 def first_name @first_name end |
#gender ⇒ Object
Returns the value of attribute gender.
11456 11457 11458 |
# File 'lib/kaltura_types.rb', line 11456 def gender @gender end |
#group ⇒ Object
Returns the value of attribute group.
11459 11460 11461 |
# File 'lib/kaltura_types.rb', line 11459 def group @group end |
#last_name ⇒ Object
Returns the value of attribute last_name.
11458 11459 11460 |
# File 'lib/kaltura_types.rb', line 11458 def last_name @last_name end |
#screen_name ⇒ Object
Returns the value of attribute screen_name.
11447 11448 11449 |
# File 'lib/kaltura_types.rb', line 11447 def screen_name @screen_name end |
#state ⇒ Object
Returns the value of attribute state.
11453 11454 11455 |
# File 'lib/kaltura_types.rb', line 11453 def state @state end |
#tags ⇒ Object
Returns the value of attribute tags.
11450 11451 11452 |
# File 'lib/kaltura_types.rb', line 11450 def end |
#user_id ⇒ Object
Returns the value of attribute user_id.
11446 11447 11448 |
# File 'lib/kaltura_types.rb', line 11446 def user_id @user_id end |
#zip ⇒ Object
Returns the value of attribute zip.
11455 11456 11457 |
# File 'lib/kaltura_types.rb', line 11455 def zip @zip end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
11468 11469 11470 11471 11472 11473 11474 11475 11476 11477 11478 11479 11480 11481 11482 11483 11484 11485 11486 11487 11488 11489 11490 11491 11492 11493 11494 11495 11496 11497 11498 11499 11500 11501 11502 11503 11504 11505 11506 11507 11508 11509 11510 11511 11512 |
# File 'lib/kaltura_types.rb', line 11468 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. = 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 |