mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-15 02:37:49 -06:00
Should be non-human readable string
This commit is contained in:
parent
b1920b05e9
commit
913fac0094
1 changed files with 2 additions and 2 deletions
|
@ -17,10 +17,10 @@ class CloudClusterResponse(BaseCloudModel):
|
||||||
# \param host_version: The firmware version of the cluster host. This is where the Stardust client is running on.
|
# \param host_version: The firmware version of the cluster host. This is where the Stardust client is running on.
|
||||||
# \param host_internal_ip: The internal IP address of the host printer.
|
# \param host_internal_ip: The internal IP address of the host printer.
|
||||||
# \param friendly_name: The human readable name of the host printer.
|
# \param friendly_name: The human readable name of the host printer.
|
||||||
# \param printer_type: The machine type of the host printer, for example "Ultimaker 3".
|
# \param printer_type: The machine type of the host printer.
|
||||||
def __init__(self, cluster_id: str, host_guid: str, host_name: str, is_online: bool, status: str,
|
def __init__(self, cluster_id: str, host_guid: str, host_name: str, is_online: bool, status: str,
|
||||||
host_internal_ip: Optional[str] = None, host_version: Optional[str] = None,
|
host_internal_ip: Optional[str] = None, host_version: Optional[str] = None,
|
||||||
friendly_name: Optional[str] = None, printer_type: str = "Ultimaker 3", **kwargs) -> None:
|
friendly_name: Optional[str] = None, printer_type: str = "ultimaker3", **kwargs) -> None:
|
||||||
self.cluster_id = cluster_id
|
self.cluster_id = cluster_id
|
||||||
self.host_guid = host_guid
|
self.host_guid = host_guid
|
||||||
self.host_name = host_name
|
self.host_name = host_name
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue