Class: Jira4R::V2::RemoteScheme

Inherits:
Object
  • Object
show all
Defined in:
lib/jira4r/v2/jiraService.rb

Overview

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

description - SOAP::SOAPString
id - SOAP::SOAPLong
name - SOAP::SOAPString
type - SOAP::SOAPString

Direct Known Subclasses

RemotePermissionScheme

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(description = nil, id = nil, name = nil, type = nil) ⇒ RemoteScheme

Returns a new instance of RemoteScheme.



469
470
471
472
473
474
# File 'lib/jira4r/v2/jiraService.rb', line 469

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

Instance Attribute Details

#descriptionObject

Returns the value of attribute description.



464
465
466
# File 'lib/jira4r/v2/jiraService.rb', line 464

def description
  @description
end

#idObject

Returns the value of attribute id.



465
466
467
# File 'lib/jira4r/v2/jiraService.rb', line 465

def id
  @id
end

#nameObject

Returns the value of attribute name.



466
467
468
# File 'lib/jira4r/v2/jiraService.rb', line 466

def name
  @name
end

#typeObject

Returns the value of attribute type.



467
468
469
# File 'lib/jira4r/v2/jiraService.rb', line 467

def type
  @type
end