Class: Quickfix::BidTradeType

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ BidTradeType



9015
9016
9017
9018
9019
9020
9021
# File 'lib/quickfix_fields.rb', line 9015

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