# This file was auto-generated by Fern from our API Definition.

from __future__ import annotations

import typing

from ...core.client_wrapper import AsyncClientWrapper, SyncClientWrapper
from .raw_client import AsyncRawAnalyticsClient, RawAnalyticsClient

if typing.TYPE_CHECKING:
    from .live_count.client import AsyncLiveCountClient, LiveCountClient


class AnalyticsClient:
    def __init__(self, *, client_wrapper: SyncClientWrapper):
        self._raw_client = RawAnalyticsClient(client_wrapper=client_wrapper)
        self._client_wrapper = client_wrapper
        self._live_count: typing.Optional[LiveCountClient] = None

    @property
    def with_raw_response(self) -> RawAnalyticsClient:
        """
        Retrieves a raw implementation of this client that returns raw responses.

        Returns
        -------
        RawAnalyticsClient
        """
        return self._raw_client

    @property
    def live_count(self):
        if self._live_count is None:
            from .live_count.client import LiveCountClient  # noqa: E402

            self._live_count = LiveCountClient(client_wrapper=self._client_wrapper)
        return self._live_count


class AsyncAnalyticsClient:
    def __init__(self, *, client_wrapper: AsyncClientWrapper):
        self._raw_client = AsyncRawAnalyticsClient(client_wrapper=client_wrapper)
        self._client_wrapper = client_wrapper
        self._live_count: typing.Optional[AsyncLiveCountClient] = None

    @property
    def with_raw_response(self) -> AsyncRawAnalyticsClient:
        """
        Retrieves a raw implementation of this client that returns raw responses.

        Returns
        -------
        AsyncRawAnalyticsClient
        """
        return self._raw_client

    @property
    def live_count(self):
        if self._live_count is None:
            from .live_count.client import AsyncLiveCountClient  # noqa: E402

            self._live_count = AsyncLiveCountClient(client_wrapper=self._client_wrapper)
        return self._live_count
