three.MF.V3.Tasks.ExportFactoryCalibrationLogs
1from MF.V3.Task import TaskState as MF_V3_Task_TaskState, Task as MF_V3_Task_Task 2 3 4class ExportFactoryCalibrationLogs: 5 """* 6 Export facotry calibration logs. 7 8 > Request example: 9 10 ```json 11 { 12 "Task":{ 13 "Index":1, 14 "Type":"ExportFactoryCalibrationLogs" 15 } 16 } 17 ``` 18 19 > Export file buffer message from server. 20 21 ```json 22 { 23 "Buffer":{ 24 "Index":0, 25 "Size":41337, 26 "Task":{ 27 "Index":1, 28 "Type":"ExportFactoryCalibrationLogs" 29 } 30 } 31 } 32 ``` 33 34 > Export file binary data transfer from server [41337 bytes]. 35 36 > Response example: 37 38 ```json 39 { 40 "Task":{ 41 "Index":1, 42 "Type":"ExportFactoryCalibrationLogs" 43 "State":"Completed" 44 } 45 } 46 ``` 47 """ 48 class Request: 49 50 """ 51 Client request for the `ExportFactoryCalibrationLogs` task. 52 """ 53 def __init__(self, Index: int, Type: str): 54 # A unique identifier generated by the client. 55 self.Index = Index 56 # "ExportFactoryCalibrationLogs" 57 self.Type = Type 58 59 class Response: 60 61 """ 62 Server response for the `ExportFactoryCalibrationLogs` task. 63 """ 64 def __init__(self, Index: int, Type: str, State: MF_V3_Task_TaskState = None, Error: str = None): 65 # The unique identifier generated by the client. 66 self.Index = Index 67 # "ExportFactoryCalibrationLogs" 68 self.Type = Type 69 # The current state of the task. 70 self.State = State 71 # A string describing the error if the task has failed. 72 self.Error = Error 73 74 class Buffer: 75 76 """ 77 Server buffer message for the `ExportFactoryCalibrationLogs` task. 78 """ 79 def __init__(self, Index: int, Size: int, Task: MF_V3_Task_Task): 80 # The zero-based index identifying the data buffer. 81 self.Index = Index 82 # The size of the incoming data buffer in bytes. 83 self.Size = Size 84 # The requested ExportFactoryCalibrationLogs task. 85 self.Task = Task 86 87 def __init__(self): 88 pass
class
ExportFactoryCalibrationLogs:
5class ExportFactoryCalibrationLogs: 6 """* 7 Export facotry calibration logs. 8 9 > Request example: 10 11 ```json 12 { 13 "Task":{ 14 "Index":1, 15 "Type":"ExportFactoryCalibrationLogs" 16 } 17 } 18 ``` 19 20 > Export file buffer message from server. 21 22 ```json 23 { 24 "Buffer":{ 25 "Index":0, 26 "Size":41337, 27 "Task":{ 28 "Index":1, 29 "Type":"ExportFactoryCalibrationLogs" 30 } 31 } 32 } 33 ``` 34 35 > Export file binary data transfer from server [41337 bytes]. 36 37 > Response example: 38 39 ```json 40 { 41 "Task":{ 42 "Index":1, 43 "Type":"ExportFactoryCalibrationLogs" 44 "State":"Completed" 45 } 46 } 47 ``` 48 """ 49 class Request: 50 51 """ 52 Client request for the `ExportFactoryCalibrationLogs` task. 53 """ 54 def __init__(self, Index: int, Type: str): 55 # A unique identifier generated by the client. 56 self.Index = Index 57 # "ExportFactoryCalibrationLogs" 58 self.Type = Type 59 60 class Response: 61 62 """ 63 Server response for the `ExportFactoryCalibrationLogs` task. 64 """ 65 def __init__(self, Index: int, Type: str, State: MF_V3_Task_TaskState = None, Error: str = None): 66 # The unique identifier generated by the client. 67 self.Index = Index 68 # "ExportFactoryCalibrationLogs" 69 self.Type = Type 70 # The current state of the task. 71 self.State = State 72 # A string describing the error if the task has failed. 73 self.Error = Error 74 75 class Buffer: 76 77 """ 78 Server buffer message for the `ExportFactoryCalibrationLogs` task. 79 """ 80 def __init__(self, Index: int, Size: int, Task: MF_V3_Task_Task): 81 # The zero-based index identifying the data buffer. 82 self.Index = Index 83 # The size of the incoming data buffer in bytes. 84 self.Size = Size 85 # The requested ExportFactoryCalibrationLogs task. 86 self.Task = Task 87 88 def __init__(self): 89 pass
* Export facotry calibration logs.
Request example:
{
"Task":{
"Index":1,
"Type":"ExportFactoryCalibrationLogs"
}
}
Export file buffer message from server.
{
"Buffer":{
"Index":0,
"Size":41337,
"Task":{
"Index":1,
"Type":"ExportFactoryCalibrationLogs"
}
}
}
Export file binary data transfer from server [41337 bytes].
Response example:
{
"Task":{
"Index":1,
"Type":"ExportFactoryCalibrationLogs"
"State":"Completed"
}
}
class
ExportFactoryCalibrationLogs.Request:
49 class Request: 50 51 """ 52 Client request for the `ExportFactoryCalibrationLogs` task. 53 """ 54 def __init__(self, Index: int, Type: str): 55 # A unique identifier generated by the client. 56 self.Index = Index 57 # "ExportFactoryCalibrationLogs" 58 self.Type = Type
Client request for the ExportFactoryCalibrationLogs
task.
class
ExportFactoryCalibrationLogs.Response:
60 class Response: 61 62 """ 63 Server response for the `ExportFactoryCalibrationLogs` task. 64 """ 65 def __init__(self, Index: int, Type: str, State: MF_V3_Task_TaskState = None, Error: str = None): 66 # The unique identifier generated by the client. 67 self.Index = Index 68 # "ExportFactoryCalibrationLogs" 69 self.Type = Type 70 # The current state of the task. 71 self.State = State 72 # A string describing the error if the task has failed. 73 self.Error = Error
Server response for the ExportFactoryCalibrationLogs
task.
ExportFactoryCalibrationLogs.Response( Index: int, Type: str, State: MF.V3.Task.TaskState = None, Error: str = None)
65 def __init__(self, Index: int, Type: str, State: MF_V3_Task_TaskState = None, Error: str = None): 66 # The unique identifier generated by the client. 67 self.Index = Index 68 # "ExportFactoryCalibrationLogs" 69 self.Type = Type 70 # The current state of the task. 71 self.State = State 72 # A string describing the error if the task has failed. 73 self.Error = Error
class
ExportFactoryCalibrationLogs.Buffer:
75 class Buffer: 76 77 """ 78 Server buffer message for the `ExportFactoryCalibrationLogs` task. 79 """ 80 def __init__(self, Index: int, Size: int, Task: MF_V3_Task_Task): 81 # The zero-based index identifying the data buffer. 82 self.Index = Index 83 # The size of the incoming data buffer in bytes. 84 self.Size = Size 85 # The requested ExportFactoryCalibrationLogs task. 86 self.Task = Task
Server buffer message for the ExportFactoryCalibrationLogs
task.