Class: Quickfix::BidDescriptorType

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

Returns a new instance of BidDescriptorType.



4972
4973
4974
4975
4976
4977
4978
# File 'lib/quickfix_fields.rb', line 4972

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

Class Method Details

.fieldObject



4969
4970
4971
# File 'lib/quickfix_fields.rb', line 4969

def BidDescriptorType.field
  return 399
end