Class: Quickfix::PaymentSubType

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

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

Class Method Details

.fieldObject



57996
57997
57998
# File 'lib/quickfix_fields.rb', line 57996

def PaymentSubType.field
  return 40993
end