Class: Quickfix::NumTickets

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ NumTickets

Returns a new instance of NumTickets.



4920
4921
4922
4923
4924
4925
4926
# File 'lib/quickfix_fields.rb', line 4920

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