Class: Quickfix::UnderlyingSettlementType

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingSettlementType

Returns a new instance of UnderlyingSettlementType.



13149
13150
13151
13152
13153
13154
13155
# File 'lib/quickfix_fields.rb', line 13149

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