Class: Quickfix::SecondaryOrderID

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

Returns a new instance of SecondaryOrderID.



2983
2984
2985
2986
2987
2988
2989
# File 'lib/quickfix_fields.rb', line 2983

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

Class Method Details

.fieldObject



2980
2981
2982
# File 'lib/quickfix_fields.rb', line 2980

def SecondaryOrderID.field
  return 198
end