Class: Quickfix::UnderlyingReferenceEntityType

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingReferenceEntityType

Returns a new instance of UnderlyingReferenceEntityType.



26188
26189
26190
26191
26192
26193
26194
# File 'lib/quickfix_fields.rb', line 26188

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