Class: Quickfix::NoPayments

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

Instance Method Summary collapse

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