Class: Quickfix::PaymentMethod

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ PaymentMethod

Returns a new instance of PaymentMethod.



6792
6793
6794
6795
6796
6797
6798
# File 'lib/quickfix_fields.rb', line 6792

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