Does QuickFIX provide the possibility of getting ALL existing fields of an incoming FIX message in a single step? (I use version 1.14.3 for Python.)
According to QuickFIX documentation, it's possible to get a field value in a certain way:
price = quickfix.Price()
field = message.getField(price)
field.getValue()
Various message types contain different fields, so doing that for every field would be awkward. What is more, sometimes it's unknown whether some fields exist in a message. How do I get all fields of a message not knowing what fields it contains?