Class: Quickfix::EncryptedPasswordLen

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ EncryptedPasswordLen

Returns a new instance of EncryptedPasswordLen.



15567
15568
15569
15570
15571
15572
15573
# File 'lib/quickfix_fields.rb', line 15567

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

Class Method Details

.fieldObject



15564
15565
15566
# File 'lib/quickfix_fields.rb', line 15564

def EncryptedPasswordLen.field
  return 1401
end