Class: Quickfix::AuctionType

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ AuctionType

Returns a new instance of AuctionType.



23575
23576
23577
23578
23579
23580
23581
# File 'lib/quickfix_fields.rb', line 23575

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