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.



551
552
553
554
555
556
# File 'lib/jira4r/v2/jira_service.rb', line 551

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.



546
547
548
# File 'lib/jira4r/v2/jira_service.rb', line 546

def description
  @description
end

#idObject

Returns the value of attribute id.



547
548
549
# File 'lib/jira4r/v2/jira_service.rb', line 547

def id
  @id
end

#nameObject

Returns the value of attribute name.



548
549
550
# File 'lib/jira4r/v2/jira_service.rb', line 548

def name
  @name
end

#typeObject

Returns the value of attribute type.



549
550
551
# File 'lib/jira4r/v2/jira_service.rb', line 549

def type
  @type
end