Class: Quickfix::NoPosAmt

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

Returns a new instance of NoPosAmt.



10302
10303
10304
10305
10306
10307
10308
# File 'lib/quickfix_fields.rb', line 10302

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

Class Method Details

.fieldObject



10299
10300
10301
# File 'lib/quickfix_fields.rb', line 10299

def NoPosAmt.field
  return 753
end