Class: Quickfix::BidTradeType

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from CharField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ BidTradeType

Returns a new instance of 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

Class Method Details

.fieldObject



9012
9013
9014
# File 'lib/quickfix_fields.rb', line 9012

def BidTradeType.field
  return 418
end