Class: Quickfix::PosAmtReason

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

Returns a new instance of PosAmtReason.



21768
21769
21770
21771
21772
21773
21774
# File 'lib/quickfix_fields.rb', line 21768

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

Class Method Details

.fieldObject



21765
21766
21767
# File 'lib/quickfix_fields.rb', line 21765

def PosAmtReason.field
  return 1585
end