blob: dd262a572e73200613fbdbaf4e6951ead68e401c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
syntax = "proto3";
package Tango.PMR.Printing;
option java_package = "com.twine.tango.pmr.printing";
enum JobUploadStrategy
{
//Uploads the full job, segments and brush stops on JobRequest.
Default = 0;
//Uploads a job description file to storage containing the series of segments and brush stops.
//Then, sends a job request with the JobDescriptionFile field containing the path to the job description file.
JobDescriptionFile = 1;
}
|