Class: Jira4R::V2::RemoteFilter

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

Overview

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

id - SOAP::SOAPString
name - SOAP::SOAPString
author - SOAP::SOAPString
description - SOAP::SOAPString
project - SOAP::SOAPString
xml - SOAP::SOAPString

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(id = nil, name = nil, author = nil, description = nil, project = nil, xml = nil) ⇒ RemoteFilter

Returns a new instance of RemoteFilter.



337
338
339
340
341
342
343
344
# File 'lib/jira4r/v2/jiraService.rb', line 337

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

Instance Attribute Details

#authorObject

Returns the value of attribute author.



332
333
334
# File 'lib/jira4r/v2/jiraService.rb', line 332

def author
  @author
end

#descriptionObject

Returns the value of attribute description.



333
334
335
# File 'lib/jira4r/v2/jiraService.rb', line 333

def description
  @description
end

#idObject

Returns the value of attribute id.



330
331
332
# File 'lib/jira4r/v2/jiraService.rb', line 330

def id
  @id
end

#nameObject

Returns the value of attribute name.



331
332
333
# File 'lib/jira4r/v2/jiraService.rb', line 331

def name
  @name
end

#projectObject

Returns the value of attribute project.



334
335
336
# File 'lib/jira4r/v2/jiraService.rb', line 334

def project
  @project
end

#xmlObject

Returns the value of attribute xml.



335
336
337
# File 'lib/jira4r/v2/jiraService.rb', line 335

def xml
  @xml
end