Last active
July 20, 2023 14:24
-
-
Save m1/5a679f56e43694f4955ce2a96ae4ae61 to your computer and use it in GitHub Desktop.
Revisions
-
m1 revised this gist
Jul 20, 2023 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -5,6 +5,7 @@ message DisclosureSignedOffFeedbackEvent { oneof event { DisclosureSignedOffOk success = 3; DisclosureSignedOffError failed = 4; reserved 5 to 11; } } -
m1 revised this gist
Jul 20, 2023 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -3,8 +3,8 @@ message DisclosureSignedOffFeedbackEvent { google.protobuf.Timestamp processing_timestamp = 2; oneof event { DisclosureSignedOffOk success = 3; DisclosureSignedOffError failed = 4; } } -
m1 revised this gist
Jul 20, 2023 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -8,10 +8,10 @@ message DisclosureSignedOffFeedbackEvent { } } message DisclosureSignedOffSuccess { string processing_id = 1; } message DisclosureSignedOffFailed { ErrorContent error = 1; } -
m1 revised this gist
Jul 20, 2023 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -3,8 +3,8 @@ message DisclosureSignedOffFeedbackEvent { google.protobuf.Timestamp processing_timestamp = 2; oneof event { DisclosureSignedOffOk success = 4; DisclosureSignedOffError failed = 5; } } -
m1 created this gist
Jul 20, 2023 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,17 @@ message DisclosureSignedOffFeedbackEvent { type.v1.UUID sign_off_id = 1; google.protobuf.Timestamp processing_timestamp = 2; oneof event { DisclosureSignedOffOk ok = 4; DisclosureSignedOffError error = 5; } } message DisclosureSignedOffOk { string processing_id = 1; } message DisclosureSignedOffError { ErrorContent error = 1; }