Class: XCResult::Reference

Inherits:
AbstractObject show all
Defined in:
lib/xcresult/models.rb

Overview

  • Reference

    • Kind: object

    • Properties: + id: String + targetType: TypeDefinition?

Instance Attribute Summary collapse

Attributes inherited from AbstractObject

#type

Instance Method Summary collapse

Methods inherited from AbstractObject

#fetch_value, #fetch_values

Constructor Details

#initialize(data) ⇒ Reference

Returns a new instance of Reference.



319
320
321
322
323
# File 'lib/xcresult/models.rb', line 319

def initialize(data)
  self.id = fetch_value(data, 'id')
  self.target_type = TypeDefinition.new(data['targetType']) if data['targetType']
  super
end

Instance Attribute Details

#idObject

Returns the value of attribute id.



317
318
319
# File 'lib/xcresult/models.rb', line 317

def id
  @id
end

#target_typeObject

Returns the value of attribute target_type.



318
319
320
# File 'lib/xcresult/models.rb', line 318

def target_type
  @target_type
end