
| Current Path : /var/www/web-klick.de/dsh/order_model/.archive/ixml/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/web-klick.de/dsh/order_model/.archive/ixml/litho.py |
#!/usr/bin/env python
from typing import Optional
from pydantic import BaseModel
class Litho(BaseModel):
"""Model to carry lithography information.
Type hint notation by 'pydantic'.
(see https://pypi.org/project/pydantic/)
Attributes:
"""
layer_number: int
phase_code: str
platform: str
min_req_litho_tool: Optional[str]
max_req_litho_tool: Optional[str]
customer_jobdeck_name: Optional[str]
customer_job_level: Optional[str]
na_litho_platform: Optional[bool]
primary_supplier: Optional[str]
primary_part_number: Optional[str]
alternate_supplier: Optional[str]
alternate_part_number: Optional[str]
third_supplier: Optional[str]
third_part_number: Optional[str]
substrate: Optional[str]
blank_size: Optional[str]
blank_thick_ness: Optional[str]
blank_flat_ness: Optional[str]
recycled_allowed: Optional[str]