Class: Quickfix::UnderlyingMaturityDate

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingMaturityDate

Returns a new instance of UnderlyingMaturityDate.



7429
7430
7431
7432
7433
7434
7435
# File 'lib/quickfix_fields.rb', line 7429

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