Class: Quickfix::PaymentAmount

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ PaymentAmount

Returns a new instance of PaymentAmount.



30127
30128
30129
30130
30131
30132
30133
# File 'lib/quickfix_fields.rb', line 30127

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