Class: Quickfix::PartyActionType

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ PartyActionType

Returns a new instance of PartyActionType.



56764
56765
56766
56767
56768
56769
56770
# File 'lib/quickfix_fields.rb', line 56764

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