Class: Quickfix::MaturityDay

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ MaturityDay

Returns a new instance of MaturityDay.



3074
3075
3076
3077
3078
3079
3080
# File 'lib/quickfix_fields.rb', line 3074

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