Class: Quickfix::SettlDate

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ SettlDate

Returns a new instance of SettlDate.



11498
11499
11500
11501
11502
11503
11504
# File 'lib/quickfix_fields.rb', line 11498

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

Class Method Details

.fieldObject



11495
11496
11497
# File 'lib/quickfix_fields.rb', line 11495

def SettlDate.field
	return 64
end