Class: Quickfix::AffectedOrderID

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

Returns a new instance of AffectedOrderID.



7338
7339
7340
7341
7342
7343
7344
# File 'lib/quickfix_fields.rb', line 7338

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

Class Method Details

.fieldObject



7335
7336
7337
# File 'lib/quickfix_fields.rb', line 7335

def AffectedOrderID.field
	return 535
end