Class: Quickfix::RedemptionDate

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ RedemptionDate

Returns a new instance of RedemptionDate.



8313
8314
8315
8316
8317
8318
8319
# File 'lib/quickfix_fields.rb', line 8313

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

Class Method Details

.fieldObject



8310
8311
8312
# File 'lib/quickfix_fields.rb', line 8310

def RedemptionDate.field
	return 240
end