Class: Quickfix::IOIID

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ IOIID

Returns a new instance of IOIID.



15138
15139
15140
15141
15142
15143
15144
# File 'lib/quickfix_fields.rb', line 15138

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

Class Method Details

.fieldObject



15135
15136
15137
# File 'lib/quickfix_fields.rb', line 15135

def IOIID.field
	return 23
end