"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.""" from __future__ import annotations from .videogenerationusage import VideoGenerationUsage, VideoGenerationUsageTypedDict from openrouter.types import BaseModel, UNSET_SENTINEL, UnrecognizedStr from pydantic import model_serializer from typing import List, Literal, Optional, Union from typing_extensions import NotRequired, TypedDict VideoGenerationResponseStatus = Union[ Literal[ "pending", "in_progress", "completed", "failed", "cancelled", "expired", ], UnrecognizedStr, ] class VideoGenerationResponseTypedDict(TypedDict): id: str polling_url: str status: VideoGenerationResponseStatus error: NotRequired[str] generation_id: NotRequired[str] r"""The generation ID associated with this video generation job. Available once the job has been processed.""" unsigned_urls: NotRequired[List[str]] usage: NotRequired[VideoGenerationUsageTypedDict] r"""Usage and cost information for the video generation. Available once the job has completed.""" class VideoGenerationResponse(BaseModel): id: str polling_url: str status: VideoGenerationResponseStatus error: Optional[str] = None generation_id: Optional[str] = None r"""The generation ID associated with this video generation job. Available once the job has been processed.""" unsigned_urls: Optional[List[str]] = None usage: Optional[VideoGenerationUsage] = None r"""Usage and cost information for the video generation. Available once the job has completed.""" @model_serializer(mode="wrap") def serialize_model(self, handler): optional_fields = set(["error", "generation_id", "unsigned_urls", "usage"]) serialized = handler(self) m = {} for n, f in type(self).model_fields.items(): k = f.alias or n val = serialized.get(k, serialized.get(n)) if val != UNSET_SENTINEL: if val is not None or k not in optional_fields: m[k] = val return m