mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-20 13:17:51 -06:00
14 lines
532 B
Python
14 lines
532 B
Python
# Copyright (c) 2019 Ultimaker B.V.
|
|
# Cura is released under the terms of the LGPLv3 or higher.
|
|
from typing import Optional, List
|
|
|
|
from .CloudClusterResponse import CloudClusterResponse
|
|
from .ClusterPrinterStatus import ClusterPrinterStatus
|
|
|
|
|
|
class CloudClusterWithConfigResponse(CloudClusterResponse):
|
|
"""Class representing a cloud connected cluster."""
|
|
|
|
def __init__(self, **kwargs) -> None:
|
|
self.configuration = self.parseModel(ClusterPrinterStatus, kwargs.get("host_printer"))
|
|
super().__init__(**kwargs)
|