Class: Jira4R::V2::RemoteIssueType

Inherits:
AbstractRemoteConstant show all
Defined in:
lib/jira4r/v2/jiraService.rb

Overview

http://beans.soap.rpc.jira.atlassian.comRemoteIssueType

id - SOAP::SOAPString
name - SOAP::SOAPString
description - SOAP::SOAPString
icon - SOAP::SOAPString
subTask - SOAP::SOAPBoolean

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(id = nil, name = nil, description = nil, icon = nil, subTask = nil) ⇒ RemoteIssueType

Returns a new instance of RemoteIssueType.



281
282
283
284
285
286
287
# File 'lib/jira4r/v2/jiraService.rb', line 281

def initialize(id = nil, name = nil, description = nil, icon = nil, subTask = nil)
  @id = id
  @name = name
  @description = description
  @icon = icon
  @subTask = subTask
end

Instance Attribute Details

#descriptionObject

Returns the value of attribute description.



277
278
279
# File 'lib/jira4r/v2/jiraService.rb', line 277

def description
  @description
end

#iconObject

Returns the value of attribute icon.



278
279
280
# File 'lib/jira4r/v2/jiraService.rb', line 278

def icon
  @icon
end

#idObject

Returns the value of attribute id.



275
276
277
# File 'lib/jira4r/v2/jiraService.rb', line 275

def id
  @id
end

#nameObject

Returns the value of attribute name.



276
277
278
# File 'lib/jira4r/v2/jiraService.rb', line 276

def name
  @name
end

#subTaskObject

Returns the value of attribute subTask.



279
280
281
# File 'lib/jira4r/v2/jiraService.rb', line 279

def subTask
  @subTask
end