Class: Quickfix::TradeRequestType

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ TradeRequestType

Returns a new instance of TradeRequestType.



7754
7755
7756
7757
7758
7759
7760
# File 'lib/quickfix_fields.rb', line 7754

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