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.
-
#external_id ⇒ Object
Returns the value of attribute external_id.
-
#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.
11888 11889 11890 |
# File 'lib/kaltura_types.rb', line 11888 def city @city end |
#country ⇒ Object
Returns the value of attribute country.
11886 11887 11888 |
# File 'lib/kaltura_types.rb', line 11886 def country @country end |
#date_of_birth ⇒ Object
Returns the value of attribute date_of_birth.
11885 11886 11887 |
# File 'lib/kaltura_types.rb', line 11885 def date_of_birth @date_of_birth end |
#description ⇒ Object
Returns the value of attribute description.
11883 11884 11885 |
# File 'lib/kaltura_types.rb', line 11883 def description @description end |
#email ⇒ Object
Returns the value of attribute email.
11882 11883 11884 |
# File 'lib/kaltura_types.rb', line 11882 def email @email end |
#external_id ⇒ Object
Returns the value of attribute external_id.
11894 11895 11896 |
# File 'lib/kaltura_types.rb', line 11894 def external_id @external_id end |
#first_name ⇒ Object
Returns the value of attribute first_name.
11891 11892 11893 |
# File 'lib/kaltura_types.rb', line 11891 def first_name @first_name end |
#gender ⇒ Object
Returns the value of attribute gender.
11890 11891 11892 |
# File 'lib/kaltura_types.rb', line 11890 def gender @gender end |
#group ⇒ Object
Returns the value of attribute group.
11893 11894 11895 |
# File 'lib/kaltura_types.rb', line 11893 def group @group end |
#last_name ⇒ Object
Returns the value of attribute last_name.
11892 11893 11894 |
# File 'lib/kaltura_types.rb', line 11892 def last_name @last_name end |
#screen_name ⇒ Object
Returns the value of attribute screen_name.
11881 11882 11883 |
# File 'lib/kaltura_types.rb', line 11881 def screen_name @screen_name end |
#state ⇒ Object
Returns the value of attribute state.
11887 11888 11889 |
# File 'lib/kaltura_types.rb', line 11887 def state @state end |
#tags ⇒ Object
Returns the value of attribute tags.
11884 11885 11886 |
# File 'lib/kaltura_types.rb', line 11884 def @tags end |
#user_id ⇒ Object
Returns the value of attribute user_id.
11880 11881 11882 |
# File 'lib/kaltura_types.rb', line 11880 def user_id @user_id end |
#zip ⇒ Object
Returns the value of attribute zip.
11889 11890 11891 |
# File 'lib/kaltura_types.rb', line 11889 def zip @zip end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
11903 11904 11905 11906 11907 11908 11909 11910 11911 11912 11913 11914 11915 11916 11917 11918 11919 11920 11921 11922 11923 11924 11925 11926 11927 11928 11929 11930 11931 11932 11933 11934 11935 11936 11937 11938 11939 11940 11941 11942 11943 11944 11945 11946 11947 11948 11949 11950 |
# File 'lib/kaltura_types.rb', line 11903 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 if xml_element.elements['externalId'] != nil self.external_id = xml_element.elements['externalId'].text end end |