Class: Quickfix::PriceType

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ PriceType

Returns a new instance of PriceType.



1605
1606
1607
1608
1609
1610
1611
# File 'lib/quickfix_fields.rb', line 1605

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

Class Method Details

.fieldObject



1602
1603
1604
# File 'lib/quickfix_fields.rb', line 1602

def PriceType.field
  return 423
end