Class: Quickfix::UnderlyingSettlementDate

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingSettlementDate

Returns a new instance of UnderlyingSettlementDate.



4894
4895
4896
4897
4898
4899
4900
# File 'lib/quickfix_fields.rb', line 4894

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

Class Method Details

.fieldObject



4891
4892
4893
# File 'lib/quickfix_fields.rb', line 4891

def UnderlyingSettlementDate.field
	return 987
end