Class: Jira4R::V2::RemoteUser
- Inherits:
-
RemoteEntity
- Object
- RemoteEntity
- Jira4R::V2::RemoteUser
- Defined in:
- lib/jira4r/v2/jiraService.rb
Overview
http://beans.soap.rpc.jira.atlassian.comRemoteUser
email - SOAP::SOAPString
fullname - SOAP::SOAPString
name - SOAP::SOAPString
Instance Attribute Summary collapse
-
#email ⇒ Object
Returns the value of attribute email.
-
#fullname ⇒ Object
Returns the value of attribute fullname.
-
#name ⇒ Object
Returns the value of attribute name.
Instance Method Summary collapse
-
#initialize(email = nil, fullname = nil, name = nil) ⇒ RemoteUser
constructor
A new instance of RemoteUser.
Constructor Details
#initialize(email = nil, fullname = nil, name = nil) ⇒ RemoteUser
Returns a new instance of RemoteUser.
90 91 92 93 94 |
# File 'lib/jira4r/v2/jiraService.rb', line 90 def initialize(email = nil, fullname = nil, name = nil) @email = email @fullname = fullname @name = name end |
Instance Attribute Details
#email ⇒ Object
Returns the value of attribute email.
86 87 88 |
# File 'lib/jira4r/v2/jiraService.rb', line 86 def email @email end |
#fullname ⇒ Object
Returns the value of attribute fullname.
87 88 89 |
# File 'lib/jira4r/v2/jiraService.rb', line 87 def fullname @fullname end |
#name ⇒ Object
Returns the value of attribute name.
88 89 90 |
# File 'lib/jira4r/v2/jiraService.rb', line 88 def name @name end |