aboutsummaryrefslogtreecommitdiffstats
path: root/Software/PMR/Messages/Printing/JobTicket.proto
blob: 2941a7e61aac74c7c171795213d188b46519146b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
syntax = "proto3";

import "JobSegment.proto";
import "ProcessParameters.proto";
import "JobWindingMethod.proto";
import "JobSpool.proto";
import "JobUploadStrategy.proto";
import "ThreadParameters.proto";
import "HeadCleaningParameters.proto";
import "BtsrParameters.proto";

package Tango.PMR.Printing;
option java_package = "com.twine.tango.pmr.printing";

message JobTicket
{
	string Guid = 1;
	string Name = 2;

	bool EnableInterSegment = 3;
	double InterSegmentLength = 4;

	double Length = 5;

	ProcessParameters ProcessParameters = 6;

	JobWindingMethod WindingMethod = 7;
	JobSpool Spool = 8;

	repeated JobSegment Segments = 9;

	JobUploadStrategy UploadStrategy = 10;
	string JobDescriptionFile = 11;

	bool EnableLubrication = 12;

	uint32 NumberOfUnits = 13;

	//sample winding winds each segment densely on a small part of the spool, end moves one for the next segment
	bool SampleWinding = 14;

	ThreadParameters ThreadParameters = 15;
	HeadCleaningParameters HeadCleaningParameters = 16;
	PMR.BTSR.BtsrParameters BtsrParameters = 17;
}