openapi-core/openapi_core/unmarshalling/schemas/enums.py

8 lines
158 B
Python
Raw Normal View History

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