Class: Quickfix::NumTickets

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from IntField

#getValue, #setValue

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

Class Method Details

.fieldObject



4917
4918
4919
# File 'lib/quickfix_fields.rb', line 4917

def NumTickets.field
	return 395
end