Class: Jira4R::V2::RemoteUser

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

Instance Method Summary collapse

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

#emailObject

Returns the value of attribute email.



48
49
50
# File 'lib/jira4r/v2/jiraService.rb', line 48

def email
  @email
end

#fullnameObject

Returns the value of attribute fullname.



49
50
51
# File 'lib/jira4r/v2/jiraService.rb', line 49

def fullname
  @fullname
end

#nameObject

Returns the value of attribute name.



50
51
52
# File 'lib/jira4r/v2/jiraService.rb', line 50

def name
  @name
end