Class: Jira4R::V2::RemoteUser

Inherits:
RemoteEntity show all
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

Instance Method Summary collapse

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/jira_service.rb', line 90

def initialize(email = nil, fullname = nil, name = nil)
  @email = email
  @fullname = fullname
  @name = name
end

Instance Attribute Details

#emailObject

Returns the value of attribute email.



86
87
88
# File 'lib/jira4r/v2/jira_service.rb', line 86

def email
  @email
end

#fullnameObject

Returns the value of attribute fullname.



87
88
89
# File 'lib/jira4r/v2/jira_service.rb', line 87

def fullname
  @fullname
end

#nameObject

Returns the value of attribute name.



88
89
90
# File 'lib/jira4r/v2/jira_service.rb', line 88

def name
  @name
end