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)
-
- (Object) email
Returns the value of attribute email.
-
- (Object) fullname
Returns the value of attribute fullname.
-
- (Object) name
Returns the value of attribute name.
Instance Method Summary (collapse)
-
- (RemoteUser) initialize(email = nil, fullname = nil, name = nil)
constructor
A new instance of RemoteUser.
Constructor Details
- (RemoteUser) initialize(email = nil, fullname = nil, name = nil)
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
- (Object) email
Returns the value of attribute email
49 50 51 |
# File 'lib/jira4r/v2/jira_service.rb', line 49 def email @email end |
- (Object) fullname
Returns the value of attribute fullname
50 51 52 |
# File 'lib/jira4r/v2/jira_service.rb', line 50 def fullname @fullname end |
- (Object) name
Returns the value of attribute name
51 52 53 |
# File 'lib/jira4r/v2/jira_service.rb', line 51 def name @name end |