Class: Quickfix::PartyRelationship

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ PartyRelationship

Returns a new instance of PartyRelationship.



20468
20469
20470
20471
20472
20473
20474
# File 'lib/quickfix_fields.rb', line 20468

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