"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
# @generated-id: 6cf0e3599e2c

from __future__ import annotations
from .jsonpatch import JSONPatch, JSONPatchTypedDict
from typing import List, Union
from typing_extensions import TypeAliasType


JSONPatchPayloadValueResponseTypedDict = TypeAliasType(
    "JSONPatchPayloadValueResponseTypedDict", Union[List[JSONPatchTypedDict], str]
)


JSONPatchPayloadValueResponse = TypeAliasType(
    "JSONPatchPayloadValueResponse", Union[List[JSONPatch], str]
)
