Class: Quickfix::PaymentAmount

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) ⇒ 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

Class Method Details

.fieldObject



30124
30125
30126
# File 'lib/quickfix_fields.rb', line 30124

def PaymentAmount.field
  return 40217
end