Class: Quickfix::PostTradePaymentAmount

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ PostTradePaymentAmount

Returns a new instance of PostTradePaymentAmount.



77278
77279
77280
77281
77282
77283
77284
# File 'lib/quickfix_fields.rb', line 77278

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