Class: Quickfix::NoPayments

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

Returns a new instance of NoPayments.



30062
30063
30064
30065
30066
30067
30068
# File 'lib/quickfix_fields.rb', line 30062

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

Class Method Details

.fieldObject



30059
30060
30061
# File 'lib/quickfix_fields.rb', line 30059

def NoPayments.field
  return 40212
end