blob: 7c1bd1c5c75ab449fad693585d606629b9ba6c70 (
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
|
syntax = "proto3";
import "JobSegment.proto";
import "ProcessParameters.proto";
import "JobWindingMethod.proto";
package Tango.PMR.Printing;
option java_package = "com.twine.tango.pmr.printing";
message JobTicket
{
string Name = 1;
bool EnableInterSegment = 2;
double InterSegmentLength = 3;
double Length = 4;
ProcessParameters ProcessParameters = 5;
JobWindingMethod WindingMethod = 6;
repeated JobSegment Segments = 7;
}
|