"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.""" from __future__ import annotations from .observabilitydestination import ( ObservabilityDestination, ObservabilityDestinationTypedDict, ) from openrouter.types import BaseModel from typing import List from typing_extensions import TypedDict class ListObservabilityDestinationsResponseTypedDict(TypedDict): data: List[ObservabilityDestinationTypedDict] r"""List of observability destinations.""" total_count: int r"""Total number of destinations matching the filters.""" class ListObservabilityDestinationsResponse(BaseModel): data: List[ObservabilityDestination] r"""List of observability destinations.""" total_count: int r"""Total number of destinations matching the filters."""