Class: Quickfix::PaymentAmountRelativeTo

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from IntField

#getValue, #setValue

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

Class Method Details

.fieldObject



68435
68436
68437
# File 'lib/quickfix_fields.rb', line 68435

def PaymentAmountRelativeTo.field
  return 42598
end