Class: Quickfix::TradePriceNegotiationMethod

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) ⇒ TradePriceNegotiationMethod

Returns a new instance of TradePriceNegotiationMethod.



22600
22601
22602
22603
22604
22605
22606
# File 'lib/quickfix_fields.rb', line 22600

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

Class Method Details

.fieldObject



22597
22598
22599
# File 'lib/quickfix_fields.rb', line 22597

def TradePriceNegotiationMethod.field
  return 1740
end