Class: Quickfix::UnderlyingAssetType

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from StringField

#<, #<=, #==, #>, #>=, #getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ UnderlyingAssetType

Returns a new instance of UnderlyingAssetType.



26383
26384
26385
26386
26387
26388
26389
# File 'lib/quickfix_fields.rb', line 26383

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

Class Method Details

.fieldObject



26380
26381
26382
# File 'lib/quickfix_fields.rb', line 26380

def UnderlyingAssetType.field
	return 2015
end