Class: Quickfix::UnderlyingInterestAccrualDate

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingInterestAccrualDate

Returns a new instance of UnderlyingInterestAccrualDate.



26734
26735
26736
26737
26738
26739
26740
# File 'lib/quickfix_fields.rb', line 26734

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