Class: Jira4R::V2::RemoteFilter

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



353
354
355
356
357
358
359
360
# File 'lib/jira4r/v2/jira_service.rb', line 353

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.



348
349
350
# File 'lib/jira4r/v2/jira_service.rb', line 348

def author
  @author
end

#descriptionObject

Returns the value of attribute description.



349
350
351
# File 'lib/jira4r/v2/jira_service.rb', line 349

def description
  @description
end

#idObject

Returns the value of attribute id.



346
347
348
# File 'lib/jira4r/v2/jira_service.rb', line 346

def id
  @id
end

#nameObject

Returns the value of attribute name.



347
348
349
# File 'lib/jira4r/v2/jira_service.rb', line 347

def name
  @name
end

#projectObject

Returns the value of attribute project.



350
351
352
# File 'lib/jira4r/v2/jira_service.rb', line 350

def project
  @project
end

#xmlObject

Returns the value of attribute xml.



351
352
353
# File 'lib/jira4r/v2/jira_service.rb', line 351

def xml
  @xml
end