Class: Jira4R::V2::RemoteUser
- Inherits:
-
RemoteEntity
- Object
- RemoteEntity
- Jira4R::V2::RemoteUser
- Defined in:
- lib/jira4r/v2/jira_service.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.
53 54 55 56 57 |
# File 'lib/jira4r/v2/jira_service.rb', line 53 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.
49 50 51 |
# File 'lib/jira4r/v2/jira_service.rb', line 49 def email @email end |
#fullname ⇒ Object
Returns the value of attribute fullname.
50 51 52 |
# File 'lib/jira4r/v2/jira_service.rb', line 50 def fullname @fullname end |
#name ⇒ Object
Returns the value of attribute name.
51 52 53 |
# File 'lib/jira4r/v2/jira_service.rb', line 51 def name @name end |