Class: Quickfix::AveragePriceType

Inherits:
IntField
  • Object
show all
Defined in:
lib/quickfix_fields.rb

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from IntField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ AveragePriceType

Returns a new instance of AveragePriceType.



76576
76577
76578
76579
76580
76581
76582
# File 'lib/quickfix_fields.rb', line 76576

def initialize(data = nil)
  if( data == nil )
    super(2763)
  else
    super(2763, data)
  end
end

Class Method Details

.fieldObject



76573
76574
76575
# File 'lib/quickfix_fields.rb', line 76573

def AveragePriceType.field
  return 2763
end