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.
11577 11578 11579 |
# File 'lib/kaltura_types.rb', line 11577 def city @city end |
#country ⇒ Object
Returns the value of attribute country.
11575 11576 11577 |
# File 'lib/kaltura_types.rb', line 11575 def country @country end |
#date_of_birth ⇒ Object
Returns the value of attribute date_of_birth.
11574 11575 11576 |
# File 'lib/kaltura_types.rb', line 11574 def date_of_birth @date_of_birth end |
#description ⇒ Object
Returns the value of attribute description.
11572 11573 11574 |
# File 'lib/kaltura_types.rb', line 11572 def description @description end |
#email ⇒ Object
Returns the value of attribute email.
11571 11572 11573 |
# File 'lib/kaltura_types.rb', line 11571 def email @email end |
#first_name ⇒ Object
Returns the value of attribute first_name.
11580 11581 11582 |
# File 'lib/kaltura_types.rb', line 11580 def first_name @first_name end |
#gender ⇒ Object
Returns the value of attribute gender.
11579 11580 11581 |
# File 'lib/kaltura_types.rb', line 11579 def gender @gender end |
#group ⇒ Object
Returns the value of attribute group.
11582 11583 11584 |
# File 'lib/kaltura_types.rb', line 11582 def group @group end |
#last_name ⇒ Object
Returns the value of attribute last_name.
11581 11582 11583 |
# File 'lib/kaltura_types.rb', line 11581 def last_name @last_name end |
#screen_name ⇒ Object
Returns the value of attribute screen_name.
11570 11571 11572 |
# File 'lib/kaltura_types.rb', line 11570 def screen_name @screen_name end |
#state ⇒ Object
Returns the value of attribute state.
11576 11577 11578 |
# File 'lib/kaltura_types.rb', line 11576 def state @state end |
#tags ⇒ Object
Returns the value of attribute tags.
11573 11574 11575 |
# File 'lib/kaltura_types.rb', line 11573 def @tags end |
#user_id ⇒ Object
Returns the value of attribute user_id.
11569 11570 11571 |
# File 'lib/kaltura_types.rb', line 11569 def user_id @user_id end |
#zip ⇒ Object
Returns the value of attribute zip.
11578 11579 11580 |
# File 'lib/kaltura_types.rb', line 11578 def zip @zip end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
11591 11592 11593 11594 11595 11596 11597 11598 11599 11600 11601 11602 11603 11604 11605 11606 11607 11608 11609 11610 11611 11612 11613 11614 11615 11616 11617 11618 11619 11620 11621 11622 11623 11624 11625 11626 11627 11628 11629 11630 11631 11632 11633 11634 11635 |
# File 'lib/kaltura_types.rb', line 11591 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 |