This repository has been archived by the owner on May 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 387
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
1 parent
3472117
commit 5fe1e6d
Showing
4 changed files
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
20 changes: 20 additions & 0 deletions
20
...c/main/proto/app/coronawarn/server/common/protocols/internal/v2/ppdd_srs_parameters.proto
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
// This file is auto-generated, DO NOT make any changes here | ||
syntax = "proto3"; | ||
package app.coronawarn.server.common.protocols.internal.v2; | ||
option java_multiple_files = true; | ||
import "app/coronawarn/server/common/protocols/internal/v2/ppdd_ppac_parameters.proto"; | ||
|
||
message PPDDSelfReportSubmissionParametersIOS { | ||
PPDDSelfReportSubmissionParametersCommon common = 1; | ||
PPDDPrivacyPreservingAccessControlParametersIOS ppac = 2; | ||
} | ||
|
||
message PPDDSelfReportSubmissionParametersAndroid { | ||
PPDDSelfReportSubmissionParametersCommon common = 1; | ||
PPDDPrivacyPreservingAccessControlParametersAndroid ppac = 2; | ||
} | ||
|
||
message PPDDSelfReportSubmissionParametersCommon { | ||
int32 timeSinceOnboardingInHours = 1; | ||
int32 timeBetweenSubmissionsInDays = 2; | ||
} |