Class: Quickfix::Password

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ Password

Returns a new instance of Password.



10705
10706
10707
10708
10709
10710
10711
# File 'lib/quickfix_fields.rb', line 10705

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

Class Method Details

.fieldObject



10702
10703
10704
# File 'lib/quickfix_fields.rb', line 10702

def Password.field
	return 554
end