Class: XCResult::TypeDefinition

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

Overview

  • TypeDefinition

    • Kind: object

    • Properties: + name: String + supertype: 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) ⇒ TypeDefinition

Returns a new instance of TypeDefinition.



329
330
331
332
333
# File 'lib/xcresult/models.rb', line 329

def initialize(data)
  self.name = fetch_value(data, 'name')
  self.supertype = TypeDefinition.new(data['supertype']) if data['supertype']
  super
end

Instance Attribute Details

#nameObject

Returns the value of attribute name.



327
328
329
# File 'lib/xcresult/models.rb', line 327

def name
  @name
end

#supertypeObject

Returns the value of attribute supertype.



328
329
330
# File 'lib/xcresult/models.rb', line 328

def supertype
  @supertype
end