Models

from typing import Optional, List, Dict, Union, Any, Literal


class SimpleKeyValueMapping:
    key: Optional[str]
    value: Optional[str]