Class: Quickfix::BookingType

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) ⇒ BookingType

Returns a new instance of BookingType.



10588
10589
10590
10591
10592
10593
10594
# File 'lib/quickfix_fields.rb', line 10588

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

Class Method Details

.fieldObject



10585
10586
10587
# File 'lib/quickfix_fields.rb', line 10585

def BookingType.field
  return 775
end