Class Jira4R::V2::RemoteIssue
In: lib/jira4r/v2/jiraService.rb
Parent: AbstractRemoteEntity

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

  id - SOAP::SOAPString
  affectsVersions - Jira4R::V2::ArrayOf_tns1_RemoteVersion
  assignee - SOAP::SOAPString
  attachmentNames - Jira4R::V2::ArrayOf_xsd_string
  components - Jira4R::V2::ArrayOf_tns1_RemoteComponent
  created - SOAP::SOAPDateTime
  customFieldValues - Jira4R::V2::ArrayOf_tns1_RemoteCustomFieldValue
  description - SOAP::SOAPString
  duedate - SOAP::SOAPDateTime
  environment - SOAP::SOAPString
  fixVersions - Jira4R::V2::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

Methods

new  

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] 
status  [RW] 
summary  [RW] 
type  [RW] 
updated  [RW] 
votes  [RW] 

Public Class methods

[Source]

     # File lib/jira4r/v2/jiraService.rb, line 392
392:   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)
393:     @id = id
394:     @affectsVersions = affectsVersions
395:     @assignee = assignee
396:     @attachmentNames = attachmentNames
397:     @components = components
398:     @created = created
399:     @customFieldValues = customFieldValues
400:     @description = description
401:     @duedate = duedate
402:     @environment = environment
403:     @fixVersions = fixVersions
404:     @key = key
405:     @priority = priority
406:     @project = project
407:     @reporter = reporter
408:     @resolution = resolution
409:     @status = status
410:     @summary = summary
411:     @type = type
412:     @updated = updated
413:     @votes = votes
414:   end

[Validate]