Class: Quickfix::NumTickets

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ NumTickets

Returns a new instance of NumTickets.



16243
16244
16245
16246
16247
16248
16249
# File 'lib/quickfix_fields.rb', line 16243

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

Class Method Details

.fieldObject



16240
16241
16242
# File 'lib/quickfix_fields.rb', line 16240

def NumTickets.field
  return 395
end