class Trainer::XCResult::Reference
-
-
Kind: object
-
Properties: + id: String + targetType:
TypeDefinition
?
-
Attributes
id[RW]
target_type[RW]
Public Class Methods
new(data)
click to toggle source
Calls superclass method
Trainer::XCResult::AbstractObject::new
# File lib/trainer/xcresult.rb, line 293 def initialize(data) self.id = fetch_value(data, "id") self.target_type = TypeDefinition.new(data["targetType"]) if data["targetType"] super end