Class: Quickfix::BidType

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ BidType

Returns a new instance of BidType.



4907
4908
4909
4910
4911
4912
4913
# File 'lib/quickfix_fields.rb', line 4907

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