Class: Quickfix::PayAmount

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from DoubleField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ PayAmount

Returns a new instance of PayAmount.



22340
22341
22342
22343
22344
22345
22346
# File 'lib/quickfix_fields.rb', line 22340

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

Class Method Details

.fieldObject



22337
22338
22339
# File 'lib/quickfix_fields.rb', line 22337

def PayAmount.field
	return 1710
end