Class: JIRA::ProjectRole

Inherits:
DescribedEntity show all
Defined in:
lib/jiraSOAP/entities/project_role.rb

Overview

Only a name, description and id.

Instance Attribute Summary

Attributes inherited from DescribedEntity

#description

Attributes inherited from NamedEntity

#name

Attributes inherited from DynamicEntity

#id

Instance Method Summary collapse

Methods inherited from Entity

add_attributes, #initialize_with_xml, new_with_xml, #to_soap

Instance Method Details

#soapify_for(msg) ⇒ Object

Parameters:



6
7
8
9
10
# File 'lib/jiraSOAP/entities/project_role.rb', line 6

def soapify_for msg
  msg.add 'id', @id
  msg.add 'name', @name
  msg.add 'description', @description
end