class JIRA::RemoteConfiguration

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

allowAttachments - SOAP::SOAPBoolean
allowExternalUserManagment - SOAP::SOAPBoolean
allowIssueLinking - SOAP::SOAPBoolean
allowSubTasks - SOAP::SOAPBoolean
allowTimeTracking - SOAP::SOAPBoolean
allowUnassignedIssues - SOAP::SOAPBoolean
allowVoting - SOAP::SOAPBoolean
allowWatching - SOAP::SOAPBoolean
timeTrackingDaysPerWeek - SOAP::SOAPInt
timeTrackingHoursPerDay - SOAP::SOAPInt

Attributes

allowAttachments[RW]
allowExternalUserManagment[RW]
allowIssueLinking[RW]
allowSubTasks[RW]
allowTimeTracking[RW]
allowUnassignedIssues[RW]
allowVoting[RW]
allowWatching[RW]
timeTrackingDaysPerWeek[RW]
timeTrackingHoursPerDay[RW]

Public Class Methods

new(allowAttachments = nil, allowExternalUserManagment = nil, allowIssueLinking = nil, allowSubTasks = nil, allowTimeTracking = nil, allowUnassignedIssues = nil, allowVoting = nil, allowWatching = nil, timeTrackingDaysPerWeek = nil, timeTrackingHoursPerDay = nil) click to toggle source
# File lib/JIRA-SOAP-STUBS/default.rb, line 531
def initialize(allowAttachments = nil, allowExternalUserManagment = nil, allowIssueLinking = nil, allowSubTasks = nil, allowTimeTracking = nil, allowUnassignedIssues = nil, allowVoting = nil, allowWatching = nil, timeTrackingDaysPerWeek = nil, timeTrackingHoursPerDay = nil)
  @allowAttachments = allowAttachments
  @allowExternalUserManagment = allowExternalUserManagment
  @allowIssueLinking = allowIssueLinking
  @allowSubTasks = allowSubTasks
  @allowTimeTracking = allowTimeTracking
  @allowUnassignedIssues = allowUnassignedIssues
  @allowVoting = allowVoting
  @allowWatching = allowWatching
  @timeTrackingDaysPerWeek = timeTrackingDaysPerWeek
  @timeTrackingHoursPerDay = timeTrackingHoursPerDay
end