Class: Jira4R::V2::RemoteSecurityLevel
- Inherits:
-
AbstractNamedRemoteEntity
- Object
- AbstractRemoteEntity
- AbstractNamedRemoteEntity
- Jira4R::V2::RemoteSecurityLevel
- Defined in:
- lib/jira4r/v2/jiraService.rb
Overview
http://beans.soap.rpc.jira.atlassian.comRemoteSecurityLevel
id - SOAP::SOAPString
name - SOAP::SOAPString
description - SOAP::SOAPString
Instance Attribute Summary collapse
-
#description ⇒ Object
Returns the value of attribute description.
-
#id ⇒ Object
Returns the value of attribute id.
-
#name ⇒ Object
Returns the value of attribute name.
Instance Method Summary collapse
-
#initialize(id = nil, name = nil, description = nil) ⇒ RemoteSecurityLevel
constructor
A new instance of RemoteSecurityLevel.
Constructor Details
#initialize(id = nil, name = nil, description = nil) ⇒ RemoteSecurityLevel
Returns a new instance of RemoteSecurityLevel.
372 373 374 375 376 |
# File 'lib/jira4r/v2/jiraService.rb', line 372 def initialize(id = nil, name = nil, description = nil) @id = id @name = name @description = description end |
Instance Attribute Details
#description ⇒ Object
Returns the value of attribute description.
370 371 372 |
# File 'lib/jira4r/v2/jiraService.rb', line 370 def description @description end |
#id ⇒ Object
Returns the value of attribute id.
368 369 370 |
# File 'lib/jira4r/v2/jiraService.rb', line 368 def id @id end |
#name ⇒ Object
Returns the value of attribute name.
369 370 371 |
# File 'lib/jira4r/v2/jiraService.rb', line 369 def name @name end |