Welcome to mirror list, hosted at ThFree Co, Russian Federation.

PrinterSystemStatus.py « Http « Models « src « UM3NetworkPrinting « plugins - github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ad7b9c86988467b659944b1cec9f163ad5c7ccbd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Copyright (c) 2019 Ultimaker B.V.
# Cura is released under the terms of the LGPLv3 or higher.
from typing import Dict, Any

from ..BaseModel import BaseModel


## Class representing the system status of a printer.
class PrinterSystemStatus(BaseModel):

    def __init__(self, guid: str, firmware: str, hostname: str, name: str, platform: str, variant: str,
                 hardware: Dict[str, Any], **kwargs
                 ) -> None:
        self.guid = guid
        self.firmware = firmware
        self.hostname = hostname
        self.name = name
        self.platform = platform
        self.variant = variant
        self.hardware = hardware
        super().__init__(**kwargs)