Class: Jira4R::V2::RemoteProjectRole

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

Overview

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

description - SOAP::SOAPString
id - SOAP::SOAPLong
name - SOAP::SOAPString

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(description = nil, id = nil, name = nil) ⇒ RemoteProjectRole

Returns a new instance of RemoteProjectRole.



584
585
586
587
588
# File 'lib/jira4r/v2/jiraService.rb', line 584

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

Instance Attribute Details

#descriptionObject

Returns the value of attribute description.



580
581
582
# File 'lib/jira4r/v2/jiraService.rb', line 580

def description
  @description
end

#idObject

Returns the value of attribute id.



581
582
583
# File 'lib/jira4r/v2/jiraService.rb', line 581

def id
  @id
end

#nameObject

Returns the value of attribute name.



582
583
584
# File 'lib/jira4r/v2/jiraService.rb', line 582

def name
  @name
end