Method: OData::EntityType#initialize

Defined in:
lib/odata/types/entity_type.rb

#initialize(options = {}) ⇒ EntityType

Returns a new instance of EntityType.



6
7
8
9
10
11
12
13
# File 'lib/odata/types/entity_type.rb', line 6

def initialize(options = {})
  super
  @abstract   = options[:abstract]
  @base_type  = options[:base_type]
  @open_type  = options[:open_type]
  @has_stream = options[:has_stream]
  @service    = options[:service]
end