Class: Jira4R::V2::RemoteProjectRole

Inherits:
Object
  • Object
show all
Defined in:
lib/jira4r/v2/jira_service.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.



585
586
587
588
589
# File 'lib/jira4r/v2/jira_service.rb', line 585

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.



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

def description
  @description
end

#idObject

Returns the value of attribute id.



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

def id
  @id
end

#nameObject

Returns the value of attribute name.



583
584
585
# File 'lib/jira4r/v2/jira_service.rb', line 583

def name
  @name
end