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.



334
335
336
337
338
# File 'lib/xcresult/models.rb', line 334

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.



332
333
334
# File 'lib/xcresult/models.rb', line 332

def name
  @name
end

#supertypeObject

Returns the value of attribute supertype.



333
334
335
# File 'lib/xcresult/models.rb', line 333

def supertype
  @supertype
end