Class: Quickfix::UnderlyingMaturityDay

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingMaturityDay

Returns a new instance of UnderlyingMaturityDay.



3971
3972
3973
3974
3975
3976
3977
# File 'lib/quickfix_fields.rb', line 3971

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