Class: Quickfix::PaymentSubType

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ PaymentSubType



57999
58000
58001
58002
58003
58004
58005
# File 'lib/quickfix_fields.rb', line 57999

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