Class: Quickfix::PaymentDateUnadjusted

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ PaymentDateUnadjusted

Returns a new instance of PaymentDateUnadjusted.



30153
30154
30155
30156
30157
30158
30159
# File 'lib/quickfix_fields.rb', line 30153

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