blob: 9824f6ef0481c079f6f61fd420d09ac191435572 (
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
|
syntax = "proto3";
import "JobSegment.proto";
import "ProcessParameters.proto";
import "JobWindingMethod.proto";
import "JobSpool.proto";
import "JobUploadStrategy.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;
}
|