# This file is auto-generated by the CDP protocol generator.
# Do not edit this file manually as your changes will be overwritten.
# Generated from Chrome DevTools Protocol specifications.

"""CDP DeviceAccess Domain Events"""

from typing import List
from typing_extensions import TypedDict

from typing import TYPE_CHECKING

if TYPE_CHECKING:
    from .types import PromptDevice
    from .types import RequestId

"""A device request opened a user prompt to select a device. Respond with the
selectPrompt or cancelPrompt command."""


class DeviceRequestPromptedEvent(TypedDict):
    id: "RequestId"
    devices: "List[PromptDevice]"
