Class Jira4R::V2::RemoteComment
In: lib/jira4r/v2/jiraService.rb
Parent: Object

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

  author - SOAP::SOAPString
  body - SOAP::SOAPString
  created - SOAP::SOAPDateTime
  groupLevel - SOAP::SOAPString
  id - SOAP::SOAPString
  roleLevel - SOAP::SOAPString
  updateAuthor - SOAP::SOAPString
  updated - SOAP::SOAPDateTime

Methods

new  

Attributes

author  [RW] 
body  [RW] 
created  [RW] 
groupLevel  [RW] 
id  [RW] 
roleLevel  [RW] 
updateAuthor  [RW] 
updated  [RW] 

Public Class methods

[Source]

    # File lib/jira4r/v2/jiraService.rb, line 25
25:   def initialize(author = nil, body = nil, created = nil, groupLevel = nil, id = nil, roleLevel = nil, updateAuthor = nil, updated = nil)
26:     @author = author
27:     @body = body
28:     @created = created
29:     @groupLevel = groupLevel
30:     @id = id
31:     @roleLevel = roleLevel
32:     @updateAuthor = updateAuthor
33:     @updated = updated
34:   end

[Validate]