Class: Quickfix::RefMsgType

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ RefMsgType

Returns a new instance of RefMsgType.



7728
7729
7730
7731
7732
7733
7734
# File 'lib/quickfix_fields.rb', line 7728

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

Class Method Details

.fieldObject



7725
7726
7727
# File 'lib/quickfix_fields.rb', line 7725

def RefMsgType.field
	return 372
end