Class: Quickfix::PaymentType

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ PaymentType

Returns a new instance of PaymentType.



30075
30076
30077
30078
30079
30080
30081
# File 'lib/quickfix_fields.rb', line 30075

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