Class: Jira4R::V2::RemoteScheme

Inherits:
Object
  • Object
show all
Defined in:
lib/jira4r/v2/jira_service.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.



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

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.



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

def description
  @description
end

#idObject

Returns the value of attribute id.



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

def id
  @id
end

#nameObject

Returns the value of attribute name.



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

def name
  @name
end

#typeObject

Returns the value of attribute type.



468
469
470
# File 'lib/jira4r/v2/jira_service.rb', line 468

def type
  @type
end