You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am configuring schema generator with following option "with(Option.DEFINITIONS_FOR_ALL_OBJECTS)" but its adding definition for ENUMS as well. For e.g.:
Could you please tell how could I disable it for ENUM. Could you also please tell if I can change the order so that actual object definition appears at the end.
The text was updated successfully, but these errors were encountered:
to inline all enums you can use configBuilder.forTypesInGeneral().withCustomDefinitionProvider(new InlineAllEnumsDefinitionProvider()) with an instance of this custom definition provider:
Hi,
I am configuring schema generator with following option "with(Option.DEFINITIONS_FOR_ALL_OBJECTS)" but its adding definition for ENUMS as well. For e.g.:
Could you please tell how could I disable it for ENUM. Could you also please tell if I can change the order so that actual object definition appears at the end.
The text was updated successfully, but these errors were encountered: