Class: Quickfix::CardNumber

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ CardNumber

Returns a new instance of CardNumber.



643
644
645
646
647
648
649
# File 'lib/quickfix_fields.rb', line 643

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

Class Method Details

.fieldObject



640
641
642
# File 'lib/quickfix_fields.rb', line 640

def CardNumber.field
	return 489
end