Class: User

Inherits:
Object
  • Object
show all
Defined in:
lib/crowd/soap/default.rb

Overview

http://user.model.integration.crowd.atlassian.comUser

active - SOAP::SOAPBoolean
displayName - SOAP::SOAPString
emailAddress - SOAP::SOAPString
firstName - SOAP::SOAPString
iconLocation - SOAP::SOAPString
lastName - SOAP::SOAPString
directoryId - SOAP::SOAPLong
name - SOAP::SOAPString

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(active = nil, displayName = nil, emailAddress = nil, firstName = nil, iconLocation = nil, lastName = nil, directoryId = nil, name = nil) ⇒ User

Returns a new instance of User.



456
457
458
459
460
461
462
463
464
465
# File 'lib/crowd/soap/default.rb', line 456

def initialize(active = nil, displayName = nil, emailAddress = nil, firstName = nil, iconLocation = nil, lastName = nil, directoryId = nil, name = nil)
  @active = active
  @displayName = displayName
  @emailAddress = emailAddress
  @firstName = firstName
  @iconLocation = iconLocation
  @lastName = lastName
  @directoryId = directoryId
  @name = name
end

Instance Attribute Details

#activeObject

Returns the value of attribute active.



447
448
449
# File 'lib/crowd/soap/default.rb', line 447

def active
  @active
end

#directoryIdObject

Returns the value of attribute directoryId.



453
454
455
# File 'lib/crowd/soap/default.rb', line 453

def directoryId
  @directoryId
end

#displayNameObject

Returns the value of attribute displayName.



448
449
450
# File 'lib/crowd/soap/default.rb', line 448

def displayName
  @displayName
end

#emailAddressObject

Returns the value of attribute emailAddress.



449
450
451
# File 'lib/crowd/soap/default.rb', line 449

def emailAddress
  @emailAddress
end

#firstNameObject

Returns the value of attribute firstName.



450
451
452
# File 'lib/crowd/soap/default.rb', line 450

def firstName
  @firstName
end

#iconLocationObject

Returns the value of attribute iconLocation.



451
452
453
# File 'lib/crowd/soap/default.rb', line 451

def iconLocation
  @iconLocation
end

#lastNameObject

Returns the value of attribute lastName.



452
453
454
# File 'lib/crowd/soap/default.rb', line 452

def lastName
  @lastName
end

#nameObject

Returns the value of attribute name.



454
455
456
# File 'lib/crowd/soap/default.rb', line 454

def name
  @name
end