Class: Quickfix::PaymentDesc

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ PaymentDesc

Returns a new instance of PaymentDesc.



62822
62823
62824
62825
62826
62827
62828
# File 'lib/quickfix_fields.rb', line 62822

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