Class: Quickfix::NoPosAmt

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ NoPosAmt

Returns a new instance of NoPosAmt.



11459
11460
11461
11462
11463
11464
11465
# File 'lib/quickfix_fields.rb', line 11459

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

Class Method Details

.fieldObject



11456
11457
11458
# File 'lib/quickfix_fields.rb', line 11456

def NoPosAmt.field
	return 753
end