class 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 XCResult::AbstractObject::new
# File lib/xcresult/models.rb, line 368
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