Class: Quickfix::Username

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ Username

Returns a new instance of Username.



9132
9133
9134
9135
9136
9137
9138
# File 'lib/quickfix_fields.rb', line 9132

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

Class Method Details

.fieldObject



9129
9130
9131
# File 'lib/quickfix_fields.rb', line 9129

def Username.field
	return 553
end