mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-06-30 00:45:13 +08:00
24 lines
1.2 KiB
Python
24 lines
1.2 KiB
Python
# Copyright (c) 2018 Ultimaker B.V.
|
|
# Cura is released under the terms of the LGPLv3 or higher.
|
|
from datetime import datetime
|
|
from typing import Optional, Union
|
|
|
|
from .BaseCloudModel import BaseCloudModel
|
|
|
|
|
|
# Model that represents the responses received from the cloud after requesting a job to be printed.
|
|
# Spec: https://api-staging.ultimaker.com/connect/v1/spec
|
|
class CloudPrintResponse(BaseCloudModel):
|
|
## Creates a new print response object.
|
|
# \param job_id: The unique ID of a print job inside of the cluster. This ID is generated by Cura Connect.
|
|
# \param status: The status of the print request (queued or failed).
|
|
# \param generated_time: The datetime when the object was generated on the server-side.
|
|
# \param cluster_job_id: The unique ID of a print job inside of the cluster. This ID is generated by Cura Connect.
|
|
def __init__(self, job_id: str, status: str, generated_time: Union[str, datetime],
|
|
cluster_job_id: Optional[str] = None, **kwargs) -> None:
|
|
self.job_id = job_id
|
|
self.status = status
|
|
self.cluster_job_id = cluster_job_id
|
|
self.generated_time = self.parseDate(generated_time)
|
|
super().__init__(**kwargs)
|