Files
kittycad.py/kittycad/models/billing_info.py
zoo-github-actions-auth[bot] 8bebb40c9f Update api spec (#186)
* YOYO NEW API SPEC!

* I have generated the latest API!

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2024-01-16 15:04:35 -08:00

18 lines
372 B
Python

from typing import Optional
from pydantic import BaseModel, ConfigDict
from ..models.address_details import AddressDetails
class BillingInfo(BaseModel):
"""The billing information for payments."""
address: Optional[AddressDetails] = None
name: Optional[str] = None
phone: Optional[str] = None
model_config = ConfigDict(protected_namespaces=())