Class: Quickfix::TransactionAttributeValue

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ TransactionAttributeValue

Returns a new instance of TransactionAttributeValue.



78006
78007
78008
78009
78010
78011
78012
# File 'lib/quickfix_fields.rb', line 78006

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