Class: Quickfix::PartySubIDType

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

Returns a new instance of PartySubIDType.



10939
10940
10941
10942
10943
10944
10945
# File 'lib/quickfix_fields.rb', line 10939

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

Class Method Details

.fieldObject



10936
10937
10938
# File 'lib/quickfix_fields.rb', line 10936

def PartySubIDType.field
	return 803
end