Skip to content

Commit 4d9359f

Browse files
author
d.shubin
committed
fixed enums for partiallysigned status
1 parent c0143f7 commit 4d9359f

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

proto/Documents/BilateralDocument.proto

+3-3
Original file line numberDiff line numberDiff line change
@@ -49,18 +49,18 @@ enum BilateralDocumentStatus {
4949
UnknownBilateralDocumentStatus = 0; // Reserved status to report to legacy clients for newly introduced statuses
5050
OutboundWaitingForRecipientSignature = 1;
5151
OutboundWithRecipientSignature = 2;
52-
OutboundWithRecipientPartiallySignature = 16;
52+
OutboundWithRecipientPartiallySignature = 19;
5353
OutboundRecipientSignatureRequestRejected = 3;
5454
OutboundWaitingForSenderSignature = 10;
5555
OutboundInvalidSenderSignature = 11;
5656
InboundWaitingForRecipientSignature = 4;
5757
InboundWithRecipientSignature = 5;
58-
InboundWithRecipientPartiallySignature = 17;
58+
InboundWithRecipientPartiallySignature = 20;
5959
InboundRecipientSignatureRequestRejected = 6;
6060
InboundInvalidRecipientSignature = 12;
6161
InternalWaitingForRecipientSignature = 7;
6262
InternalWithRecipientSignature = 8;
63-
InternalWithRecipientPartiallySignature = 18;
63+
InternalWithRecipientPartiallySignature = 21;
6464
InternalRecipientSignatureRequestRejected = 9;
6565
InternalWaitingForSenderSignature = 13;
6666
InternalInvalidSenderSignature = 14;

src/protos/Documents/BilateralDocument.pb.cc

+6-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/protos/Documents/BilateralDocument.pb.h

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)