Class: Quickfix::PaymentRef

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ PaymentRef

Returns a new instance of PaymentRef.



6584
6585
6586
6587
6588
6589
6590
# File 'lib/quickfix_fields.rb', line 6584

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