Class: Quickfix::UnderlyingAssetSubClass

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from IntField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ UnderlyingAssetSubClass

Returns a new instance of UnderlyingAssetSubClass.



26370
26371
26372
26373
26374
26375
26376
# File 'lib/quickfix_fields.rb', line 26370

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

Class Method Details

.fieldObject



26367
26368
26369
# File 'lib/quickfix_fields.rb', line 26367

def UnderlyingAssetSubClass.field
	return 2014
end