Class: Quickfix::QuoteSetID

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from StringField

#<, #<=, #==, #>, #>=, #getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ QuoteSetID

Returns a new instance of QuoteSetID.



3815
3816
3817
3818
3819
3820
3821
# File 'lib/quickfix_fields.rb', line 3815

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

Class Method Details

.fieldObject



3812
3813
3814
# File 'lib/quickfix_fields.rb', line 3812

def QuoteSetID.field
  return 302
end