Class: JiraClient::Status

Inherits:
Base
  • Object
show all
Defined in:
lib/jira_client/status.rb

Constant Summary collapse

OPEN =
1
CLOSE =
2
START_PROGRESS =
4
REOPEN =
3
RESOLVE =
5

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Base

attr_reader, conversions, convert, from_response, #initialize

Constructor Details

This class inherits a constructor from JiraClient::Base

Instance Attribute Details

#descriptionObject (readonly)

Returns the value of attribute description.



5
6
7
# File 'lib/jira_client/status.rb', line 5

def description
  @description
end

#idObject (readonly)

Returns the value of attribute id.



5
6
7
# File 'lib/jira_client/status.rb', line 5

def id
  @id
end

#nameObject (readonly)

Returns the value of attribute name.



5
6
7
# File 'lib/jira_client/status.rb', line 5

def name
  @name
end

Instance Method Details

#to_sObject



7
8
9
# File 'lib/jira_client/status.rb', line 7

def to_s
  name
end