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.



616
617
618
619
620
# File 'lib/jira4r/v2/jira_service.rb', line 616

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.



612
613
614
# File 'lib/jira4r/v2/jira_service.rb', line 612

def description
  @description
end

#idObject

Returns the value of attribute id.



613
614
615
# File 'lib/jira4r/v2/jira_service.rb', line 613

def id
  @id
end

#nameObject

Returns the value of attribute name.



614
615
616
# File 'lib/jira4r/v2/jira_service.rb', line 614

def name
  @name
end