Class: Quickfix::NotAffectedReason

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

Returns a new instance of NotAffectedReason.



75341
75342
75343
75344
75345
75346
75347
# File 'lib/quickfix_fields.rb', line 75341

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

Class Method Details

.fieldObject



75338
75339
75340
# File 'lib/quickfix_fields.rb', line 75338

def NotAffectedReason.field
	return 2677
end