FieldNumberingStrategy: "Legacy" | "ResetFieldNumbersInNestedObjects" | "Latest"

Possible strategies for mapping between javascript classes and Michelson values Legacy: The old behaviour: { annot1: 'some value', annot2: 'other Value', annot3: { 2: 'yet another value', 3: 'also some value' }} ResetFieldNumbersInNestedObjects: { annot1: 'some value', annot2: 'other Value', annot3: { 0: 'yet another value', 1: 'also some value' }} Latest: This will include new changes as we might implement in the future. This is the suggested value if it does not break your code