Class: Quickfix::CardHolderName

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ CardHolderName

Returns a new instance of CardHolderName.



6740
6741
6742
6743
6744
6745
6746
# File 'lib/quickfix_fields.rb', line 6740

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