At the moment the enums are generated during runtime. This is now fine cause it works, but your IDE of choice is not able to make suggestions in this way.
It should be like the HTTPStatus enum
from http import HTTPStatus
HTTPStatus.ACCEPTED
The main struggle is the string representation for the serialization. But this issue should be solveable.
At the moment the enums are generated during runtime. This is now fine cause it works, but your IDE of choice is not able to make suggestions in this way.
It should be like the HTTPStatus enum
The main struggle is the string representation for the serialization. But this issue should be solveable.