Class: Quickfix::OptAttribute

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ OptAttribute

Returns a new instance of OptAttribute.



6818
6819
6820
6821
6822
6823
6824
# File 'lib/quickfix_fields.rb', line 6818

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

Class Method Details

.fieldObject



6815
6816
6817
# File 'lib/quickfix_fields.rb', line 6815

def OptAttribute.field
	return 206
end