openapi-core/openapi_core/unmarshalling/schemas/enums.py
2020-02-17 12:42:13 +00:00

7 lines
158 B
Python

"""OpenAPI core unmarshalling schemas enums module"""
from enum import Enum
class UnmarshalContext(Enum):
REQUEST = 'request'
RESPONSE = 'response'