Class: Quickfix::CardNumber

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ CardNumber

Returns a new instance of CardNumber.



6753
6754
6755
6756
6757
6758
6759
# File 'lib/quickfix_fields.rb', line 6753

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