Class: Quickfix::LegRedemptionDate

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ LegRedemptionDate

Returns a new instance of LegRedemptionDate.



6103
6104
6105
6106
6107
6108
6109
# File 'lib/quickfix_fields.rb', line 6103

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