Files
kittycad.py/kittycad/models/service_account_uuid.py
zoo-github-actions-auth[bot] 846ed0303c Update api spec (#289)
* YOYO NEW API SPEC!

* I have generated the latest API!

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2024-10-01 14:51:05 -07:00

18 lines
471 B
Python

from typing import Any
from pydantic import GetCoreSchemaHandler
from pydantic_core import CoreSchema, core_schema
class ServiceAccountUuid(str):
"""An auth token. A uuid with a prefix of svc-"""
def __str__(self) -> str:
return self
@classmethod
def __get_pydantic_core_schema__(
cls, source_type: Any, handler: GetCoreSchemaHandler
) -> CoreSchema:
return core_schema.no_info_after_validator_function(cls, handler(str))