Class: Quickfix::NotAffectedReason

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

Instance Method Summary collapse

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