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.



11297
11298
11299
# File 'lib/kaltura_types.rb', line 11297

def city
  @city
end

#countryObject

Returns the value of attribute country.



11295
11296
11297
# File 'lib/kaltura_types.rb', line 11295

def country
  @country
end

#date_of_birthObject

Returns the value of attribute date_of_birth.



11294
11295
11296
# File 'lib/kaltura_types.rb', line 11294

def date_of_birth
  @date_of_birth
end

#descriptionObject

Returns the value of attribute description.



11292
11293
11294
# File 'lib/kaltura_types.rb', line 11292

def description
  @description
end

#emailObject

Returns the value of attribute email.



11291
11292
11293
# File 'lib/kaltura_types.rb', line 11291

def email
  @email
end

#first_nameObject

Returns the value of attribute first_name.



11300
11301
11302
# File 'lib/kaltura_types.rb', line 11300

def first_name
  @first_name
end

#genderObject

Returns the value of attribute gender.



11299
11300
11301
# File 'lib/kaltura_types.rb', line 11299

def gender
  @gender
end

#groupObject

Returns the value of attribute group.



11302
11303
11304
# File 'lib/kaltura_types.rb', line 11302

def group
  @group
end

#last_nameObject

Returns the value of attribute last_name.



11301
11302
11303
# File 'lib/kaltura_types.rb', line 11301

def last_name
  @last_name
end

#screen_nameObject

Returns the value of attribute screen_name.



11290
11291
11292
# File 'lib/kaltura_types.rb', line 11290

def screen_name
  @screen_name
end

#stateObject

Returns the value of attribute state.



11296
11297
11298
# File 'lib/kaltura_types.rb', line 11296

def state
  @state
end

#tagsObject

Returns the value of attribute tags.



11293
11294
11295
# File 'lib/kaltura_types.rb', line 11293

def tags
  @tags
end

#user_idObject

Returns the value of attribute user_id.



11289
11290
11291
# File 'lib/kaltura_types.rb', line 11289

def user_id
  @user_id
end

#zipObject

Returns the value of attribute zip.



11298
11299
11300
# File 'lib/kaltura_types.rb', line 11298

def zip
  @zip
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



11311
11312
11313
11314
11315
11316
11317
11318
11319
11320
11321
11322
11323
11324
11325
11326
11327
11328
11329
11330
11331
11332
11333
11334
11335
11336
11337
11338
11339
11340
11341
11342
11343
11344
11345
11346
11347
11348
11349
11350
11351
11352
11353
11354
11355
# File 'lib/kaltura_types.rb', line 11311

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