Last active
July 20, 2023 14:24
-
-
Save m1/5a679f56e43694f4955ce2a96ae4ae61 to your computer and use it in GitHub Desktop.
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 characters
message DisclosureSignedOffFeedbackEvent { | |
type.v1.UUID sign_off_id = 1; | |
google.protobuf.Timestamp processing_timestamp = 2; | |
oneof event { | |
DisclosureSignedOffOk success = 3; | |
DisclosureSignedOffError failed = 4; | |
reserved 5 to 11; | |
} | |
} | |
message DisclosureSignedOffSuccess { | |
string processing_id = 1; | |
} | |
message DisclosureSignedOffFailed { | |
ErrorContent error = 1; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment