Skip to content
Snippets Groups Projects
Unverified Commit ebf90aaf authored by CWA Technical User's avatar CWA Technical User Committed by GitHub
Browse files
parent 8015b599
No related branches found
No related tags found
No related merge requests found
......@@ -2,6 +2,7 @@
syntax = "proto3";
package de.rki.coronawarnapp.server.protocols.internal.ppdd;
import "internal/ppdd/tri_state_boolean.proto";
message PPADataIOS {
......@@ -92,7 +93,7 @@ message PPAKeySubmissionMetadata {
int32 ptDaysSinceMostRecentDateAtRiskLevelAtTestRegistration = 13;
int32 ptHoursSinceHighRiskWarningAtTestRegistration = 14;
bool submittedWithCheckIns = 15;
TriStateBoolean submittedWithCheckIns = 15;
}
enum PPARiskLevel {
......
// This file is auto-generated, DO NOT make any changes here
syntax = "proto3";
package de.rki.coronawarnapp.server.protocols.internal.ppdd;
enum TriStateBoolean {
TSB_UNSPECIFIED = 0;
TSB_TRUE = 1;
TSB_FALSE = 2;
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment