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

import typing

import pydantic
from ..core.pydantic_utilities import IS_PYDANTIC_V2
from ..core.unchecked_base_model import UncheckedBaseModel
from .usage_v1response_resolution import UsageV1ResponseResolution


class UsageV1Response(UncheckedBaseModel):
    start: typing.Optional[str] = None
    end: typing.Optional[str] = None
    resolution: typing.Optional[UsageV1ResponseResolution] = None

    if IS_PYDANTIC_V2:
        model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True)  # type: ignore # Pydantic v2
    else:

        class Config:
            frozen = True
            smart_union = True
            extra = pydantic.Extra.allow
