Class: Quickfix::LegID

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ LegID

Returns a new instance of LegID.



23380
23381
23382
23383
23384
23385
23386
# File 'lib/quickfix_fields.rb', line 23380

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