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.
52 53 54 55 56 |
# File 'lib/jira4r/v2/jiraService.rb', line 52 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.
48 49 50 |
# File 'lib/jira4r/v2/jiraService.rb', line 48 def email @email end |
#fullname ⇒ Object
Returns the value of attribute fullname.
49 50 51 |
# File 'lib/jira4r/v2/jiraService.rb', line 49 def fullname @fullname end |
#name ⇒ Object
Returns the value of attribute name.
50 51 52 |
# File 'lib/jira4r/v2/jiraService.rb', line 50 def name @name end |