Class: Quickfix::SenderCompID

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ SenderCompID

Returns a new instance of SenderCompID.



1514
1515
1516
1517
1518
1519
1520
# File 'lib/quickfix_fields.rb', line 1514

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

Class Method Details

.fieldObject



1511
1512
1513
# File 'lib/quickfix_fields.rb', line 1511

def SenderCompID.field
	return 49
end