mirror of
https://github.com/correl/openapi-core.git
synced 2024-11-25 03:00:11 +00:00
8 lines
158 B
Python
8 lines
158 B
Python
|
"""OpenAPI core unmarshalling schemas enums module"""
|
||
|
from enum import Enum
|
||
|
|
||
|
|
||
|
class UnmarshalContext(Enum):
|
||
|
REQUEST = 'request'
|
||
|
RESPONSE = 'response'
|