mirror of
https://github.com/wassname/openrouter-python-sdk-retry-errors.git
synced 2026-07-31 12:30:30 +08:00
Project import generated by Copybara.
GitOrigin-RevId: 2592bdc8b4b7c695a3d689390aedc9a42914acc8
This commit is contained in:
@@ -0,0 +1,118 @@
|
||||
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
||||
|
||||
from __future__ import annotations
|
||||
from openrouter.types import BaseModel, Nullable, UNSET_SENTINEL
|
||||
from openrouter.utils import FieldMetadata, QueryParamMetadata
|
||||
from pydantic import model_serializer
|
||||
from typing import List, Optional
|
||||
from typing_extensions import Annotated, NotRequired, TypedDict
|
||||
|
||||
|
||||
class ListKeyAssignmentsRequestTypedDict(TypedDict):
|
||||
offset: NotRequired[str]
|
||||
r"""Number of records to skip for pagination"""
|
||||
limit: NotRequired[str]
|
||||
r"""Maximum number of records to return (max 100)"""
|
||||
|
||||
|
||||
class ListKeyAssignmentsRequest(BaseModel):
|
||||
offset: Annotated[
|
||||
Optional[str],
|
||||
FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
|
||||
] = None
|
||||
r"""Number of records to skip for pagination"""
|
||||
|
||||
limit: Annotated[
|
||||
Optional[str],
|
||||
FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
|
||||
] = None
|
||||
r"""Maximum number of records to return (max 100)"""
|
||||
|
||||
|
||||
class ListKeyAssignmentsDataTypedDict(TypedDict):
|
||||
id: str
|
||||
r"""Unique identifier for the assignment"""
|
||||
key_hash: str
|
||||
r"""Hash of the assigned API key"""
|
||||
guardrail_id: str
|
||||
r"""ID of the guardrail"""
|
||||
key_name: str
|
||||
r"""Name of the API key"""
|
||||
key_label: str
|
||||
r"""Label of the API key"""
|
||||
assigned_by: Nullable[str]
|
||||
r"""User ID of who made the assignment"""
|
||||
created_at: str
|
||||
r"""ISO 8601 timestamp of when the assignment was created"""
|
||||
|
||||
|
||||
class ListKeyAssignmentsData(BaseModel):
|
||||
id: str
|
||||
r"""Unique identifier for the assignment"""
|
||||
|
||||
key_hash: str
|
||||
r"""Hash of the assigned API key"""
|
||||
|
||||
guardrail_id: str
|
||||
r"""ID of the guardrail"""
|
||||
|
||||
key_name: str
|
||||
r"""Name of the API key"""
|
||||
|
||||
key_label: str
|
||||
r"""Label of the API key"""
|
||||
|
||||
assigned_by: Nullable[str]
|
||||
r"""User ID of who made the assignment"""
|
||||
|
||||
created_at: str
|
||||
r"""ISO 8601 timestamp of when the assignment was created"""
|
||||
|
||||
@model_serializer(mode="wrap")
|
||||
def serialize_model(self, handler):
|
||||
optional_fields = []
|
||||
nullable_fields = ["assigned_by"]
|
||||
null_default_fields = []
|
||||
|
||||
serialized = handler(self)
|
||||
|
||||
m = {}
|
||||
|
||||
for n, f in type(self).model_fields.items():
|
||||
k = f.alias or n
|
||||
val = serialized.get(k)
|
||||
serialized.pop(k, None)
|
||||
|
||||
optional_nullable = k in optional_fields and k in nullable_fields
|
||||
is_set = (
|
||||
self.__pydantic_fields_set__.intersection({n})
|
||||
or k in null_default_fields
|
||||
) # pylint: disable=no-member
|
||||
|
||||
if val is not None and val != UNSET_SENTINEL:
|
||||
m[k] = val
|
||||
elif val != UNSET_SENTINEL and (
|
||||
not k in optional_fields or (optional_nullable and is_set)
|
||||
):
|
||||
m[k] = val
|
||||
|
||||
return m
|
||||
|
||||
|
||||
class ListKeyAssignmentsResponseTypedDict(TypedDict):
|
||||
r"""List of key assignments"""
|
||||
|
||||
data: List[ListKeyAssignmentsDataTypedDict]
|
||||
r"""List of key assignments"""
|
||||
total_count: float
|
||||
r"""Total number of key assignments for this guardrail"""
|
||||
|
||||
|
||||
class ListKeyAssignmentsResponse(BaseModel):
|
||||
r"""List of key assignments"""
|
||||
|
||||
data: List[ListKeyAssignmentsData]
|
||||
r"""List of key assignments"""
|
||||
|
||||
total_count: float
|
||||
r"""Total number of key assignments for this guardrail"""
|
||||
Reference in New Issue
Block a user