Class: Quickfix::PaymentAmountRelativeTo

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ PaymentAmountRelativeTo

Returns a new instance of PaymentAmountRelativeTo.



68438
68439
68440
68441
68442
68443
68444
# File 'lib/quickfix_fields.rb', line 68438

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