class JIRA::RemoteIssue

{beans.soap.rpc.jira.atlassian.com}RemoteIssue

id - SOAP::SOAPString
affectsVersions - JIRA::ArrayOf_tns1_RemoteVersion
assignee - SOAP::SOAPString
attachmentNames - JIRA::ArrayOf_xsd_string
components - JIRA::ArrayOf_tns1_RemoteComponent
created - SOAP::SOAPDateTime
customFieldValues - JIRA::ArrayOf_tns1_RemoteCustomFieldValue
description - SOAP::SOAPString
duedate - SOAP::SOAPDateTime
environment - SOAP::SOAPString
fixVersions - JIRA::ArrayOf_tns1_RemoteVersion
key - SOAP::SOAPString
priority - SOAP::SOAPString
project - SOAP::SOAPString
reporter - SOAP::SOAPString
resolution - SOAP::SOAPString
status - SOAP::SOAPString
summary - SOAP::SOAPString
type - SOAP::SOAPString
updated - SOAP::SOAPDateTime
votes - SOAP::SOAPLong
JIRA::RemoteIssue

Attributes

affectsVersions[RW]
assignee[RW]
attachmentNames[RW]
components[RW]
created[RW]
customFieldValues[RW]
description[RW]
duedate[RW]
environment[RW]
fixVersions[RW]
id[RW]
key[RW]
priority[RW]
project[RW]
reporter[RW]
resolution[RW]
security_level[RW]
status[RW]
summary[RW]
type[RW]
updated[RW]
votes[RW]

Public Class Methods

new(id = nil, affectsVersions = nil, assignee = nil, attachmentNames = nil, components = nil, created = nil, customFieldValues = nil, description = nil, duedate = nil, environment = nil, fixVersions = nil, key = nil, priority = nil, project = nil, reporter = nil, resolution = nil, status = nil, summary = nil, type = nil, updated = nil, votes = nil, security_level = nil) click to toggle source
# File lib/JIRA-SOAP-STUBS/default.rb, line 426
def initialize(id = nil, affectsVersions = nil, assignee = nil, attachmentNames = nil, components = nil, created = nil, customFieldValues = nil, description = nil, duedate = nil, environment = nil, fixVersions = nil, key = nil, priority = nil, project = nil, reporter = nil, resolution = nil, status = nil, summary = nil, type = nil, updated = nil, votes = nil, security_level = nil)
  @id = id
  @affectsVersions = affectsVersions
  @assignee = assignee
  @attachmentNames = attachmentNames
  @components = components
  @created = created
  @customFieldValues = customFieldValues
  @description = description
  @duedate = duedate
  @environment = environment
  @fixVersions = fixVersions
  @key = key
  @priority = priority
  @project = project
  @reporter = reporter
  @resolution = resolution
  @status = status
  @summary = summary
  @type = type
  @updated = updated
  @votes = votes
  @security_level = security_level
end

Public Instance Methods

getCustomFieldValueForID(passedID) click to toggle source
# File lib/jira_soap_extensions.rb, line 4
def getCustomFieldValueForID(passedID) 
  self.customFieldValues.each do |field| 
    if field.customfieldId == passedID then
      return field.values[0]
    end
  end
  return nil
end