Class: Jira4R::V2::RemoteSecurityLevel

Inherits:
AbstractNamedRemoteEntity show all
Defined in:
lib/jira4r/v2/jira_service.rb

Overview

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

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

Instance Attribute Summary collapse

Instance Method Summary collapse

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/jira_service.rb', line 372

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

Instance Attribute Details

#descriptionObject

Returns the value of attribute description.



370
371
372
# File 'lib/jira4r/v2/jira_service.rb', line 370

def description
  @description
end

#idObject

Returns the value of attribute id.



368
369
370
# File 'lib/jira4r/v2/jira_service.rb', line 368

def id
  @id
end

#nameObject

Returns the value of attribute name.



369
370
371
# File 'lib/jira4r/v2/jira_service.rb', line 369

def name
  @name
end