Class: User
- Inherits:
-
Object
- Object
- User
- 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
-
#active ⇒ Object
Returns the value of attribute active.
-
#directoryId ⇒ Object
Returns the value of attribute directoryId.
-
#displayName ⇒ Object
Returns the value of attribute displayName.
-
#emailAddress ⇒ Object
Returns the value of attribute emailAddress.
-
#firstName ⇒ Object
Returns the value of attribute firstName.
-
#iconLocation ⇒ Object
Returns the value of attribute iconLocation.
-
#lastName ⇒ Object
Returns the value of attribute lastName.
-
#name ⇒ Object
Returns the value of attribute name.
Instance Method Summary collapse
-
#initialize(active = nil, displayName = nil, emailAddress = nil, firstName = nil, iconLocation = nil, lastName = nil, directoryId = nil, name = nil) ⇒ User
constructor
A new instance of User.
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
#active ⇒ Object
Returns the value of attribute active.
447 448 449 |
# File 'lib/crowd/soap/default.rb', line 447 def active @active end |
#directoryId ⇒ Object
Returns the value of attribute directoryId.
453 454 455 |
# File 'lib/crowd/soap/default.rb', line 453 def directoryId @directoryId end |
#displayName ⇒ Object
Returns the value of attribute displayName.
448 449 450 |
# File 'lib/crowd/soap/default.rb', line 448 def displayName @displayName end |
#emailAddress ⇒ Object
Returns the value of attribute emailAddress.
449 450 451 |
# File 'lib/crowd/soap/default.rb', line 449 def emailAddress @emailAddress end |
#firstName ⇒ Object
Returns the value of attribute firstName.
450 451 452 |
# File 'lib/crowd/soap/default.rb', line 450 def firstName @firstName end |
#iconLocation ⇒ Object
Returns the value of attribute iconLocation.
451 452 453 |
# File 'lib/crowd/soap/default.rb', line 451 def iconLocation @iconLocation end |
#lastName ⇒ Object
Returns the value of attribute lastName.
452 453 454 |
# File 'lib/crowd/soap/default.rb', line 452 def lastName @lastName end |
#name ⇒ Object
Returns the value of attribute name.
454 455 456 |
# File 'lib/crowd/soap/default.rb', line 454 def name @name end |