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

- (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