Class: Quickfix::SecondaryOrderID

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ SecondaryOrderID

Returns a new instance of SecondaryOrderID.



3269
3270
3271
3272
3273
3274
3275
# File 'lib/quickfix_fields.rb', line 3269

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

Class Method Details

.fieldObject



3266
3267
3268
# File 'lib/quickfix_fields.rb', line 3266

def SecondaryOrderID.field
  return 198
end