26 lines
495 B
Protocol Buffer
26 lines
495 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_outer_classname = "DocumentPageProto";
|
|
option java_package = "com.iqser.red.service.redaction.v1.server.data";
|
|
|
|
|
|
message AllDocumentPages {
|
|
|
|
repeated DocumentPage documentPages = 1;
|
|
}
|
|
|
|
message DocumentPage {
|
|
// The page number, starting with 1.
|
|
int32 number = 1;
|
|
|
|
// The page height in PDF user units.
|
|
int32 height = 2;
|
|
|
|
// The page width in PDF user units.
|
|
int32 width = 3;
|
|
|
|
// The page rotation as specified by the PDF.
|
|
int32 rotation = 4;
|
|
}
|
|
|