class Trainer::XCResult::IssueSummary

Attributes

document_location_in_creating_workspace[RW]
issue_type[RW]
message[RW]
producing_target[RW]

Public Class Methods

new(data) click to toggle source
Calls superclass method Trainer::XCResult::AbstractObject::new
# File lib/trainer/xcresult.rb, line 342
def initialize(data)
  self.issue_type = fetch_value(data, "issueType")
  self.message = fetch_value(data, "message")
  self.producing_target = fetch_value(data, "producingTarget")
  self.document_location_in_creating_workspace = DocumentLocation.new(data["documentLocationInCreatingWorkspace"]) if data["documentLocationInCreatingWorkspace"]
  super
end