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.



11537
11538
11539
# File 'lib/kaltura_types.rb', line 11537

def city
  @city
end

#countryObject

Returns the value of attribute country.



11535
11536
11537
# File 'lib/kaltura_types.rb', line 11535

def country
  @country
end

#date_of_birthObject

Returns the value of attribute date_of_birth.



11534
11535
11536
# File 'lib/kaltura_types.rb', line 11534

def date_of_birth
  @date_of_birth
end

#descriptionObject

Returns the value of attribute description.



11532
11533
11534
# File 'lib/kaltura_types.rb', line 11532

def description
  @description
end

#emailObject

Returns the value of attribute email.



11531
11532
11533
# File 'lib/kaltura_types.rb', line 11531

def email
  @email
end

#first_nameObject

Returns the value of attribute first_name.



11540
11541
11542
# File 'lib/kaltura_types.rb', line 11540

def first_name
  @first_name
end

#genderObject

Returns the value of attribute gender.



11539
11540
11541
# File 'lib/kaltura_types.rb', line 11539

def gender
  @gender
end

#groupObject

Returns the value of attribute group.



11542
11543
11544
# File 'lib/kaltura_types.rb', line 11542

def group
  @group
end

#last_nameObject

Returns the value of attribute last_name.



11541
11542
11543
# File 'lib/kaltura_types.rb', line 11541

def last_name
  @last_name
end

#screen_nameObject

Returns the value of attribute screen_name.



11530
11531
11532
# File 'lib/kaltura_types.rb', line 11530

def screen_name
  @screen_name
end

#stateObject

Returns the value of attribute state.



11536
11537
11538
# File 'lib/kaltura_types.rb', line 11536

def state
  @state
end

#tagsObject

Returns the value of attribute tags.



11533
11534
11535
# File 'lib/kaltura_types.rb', line 11533

def tags
  @tags
end

#user_idObject

Returns the value of attribute user_id.



11529
11530
11531
# File 'lib/kaltura_types.rb', line 11529

def user_id
  @user_id
end

#zipObject

Returns the value of attribute zip.



11538
11539
11540
# File 'lib/kaltura_types.rb', line 11538

def zip
  @zip
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



11551
11552
11553
11554
11555
11556
11557
11558
11559
11560
11561
11562
11563
11564
11565
11566
11567
11568
11569
11570
11571
11572
11573
11574
11575
11576
11577
11578
11579
11580
11581
11582
11583
11584
11585
11586
11587
11588
11589
11590
11591
11592
11593
11594
11595
# File 'lib/kaltura_types.rb', line 11551

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