Class: Quickfix::AgreementID

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ AgreementID

Returns a new instance of AgreementID.



12356
12357
12358
12359
12360
12361
12362
# File 'lib/quickfix_fields.rb', line 12356

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