class JIRA::RemoteFilter

{beans.soap.rpc.jira.atlassian.com}RemoteFilter

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

Attributes

author[RW]
description[RW]
id[RW]
name[RW]
project[RW]
xml[RW]

Public Class Methods

new(id = nil, name = nil, author = nil, description = nil, project = nil, xml = nil) click to toggle source
# File lib/JIRA-SOAP-STUBS/default.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