mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-06-02 07:14:37 +08:00
17 lines
696 B
Python
17 lines
696 B
Python
# Copyright (c) 2018 Ultimaker B.V.
|
|
# Cura is released under the terms of the LGPLv3 or higher.
|
|
from typing import Optional
|
|
|
|
from ..BaseModel import BaseModel
|
|
|
|
|
|
## Class representing a cloud cluster print job constraint
|
|
class ClusterPrintJobConstraints(BaseModel):
|
|
|
|
## Creates a new print job constraint.
|
|
# \param require_printer_name: Unique name of the printer that this job should be printed on.
|
|
# Should be one of the unique_name field values in the cluster, e.g. 'ultimakersystem-ccbdd30044ec'
|
|
def __init__(self, require_printer_name: Optional[str] = None, **kwargs) -> None:
|
|
self.require_printer_name = require_printer_name
|
|
super().__init__(**kwargs)
|