Class: JIRA::User

Inherits:
Entity show all
Defined in:
lib/jiraSOAP/entities/user.rb

Overview

Contains only the basic information about a user. The only things missing here are the permissions and login statistics, but these are not given in the API.

Instance Attribute Summary collapse

Method Summary

Methods inherited from Entity

add_attributes, #initialize_with_xml, new_with_xml

Instance Attribute Details

#email_addressString

Returns:

  • (String)


17
18
19
# File 'lib/jiraSOAP/entities/user.rb', line 17

def email_address
  @email_address
end

#full_nameString

Returns:

  • (String)


14
15
16
# File 'lib/jiraSOAP/entities/user.rb', line 14

def full_name
  @full_name
end

#usernameString

Returns:

  • (String)


11
12
13
# File 'lib/jiraSOAP/entities/user.rb', line 11

def username
  @username
end