Comment protos

PiperOrigin-RevId: 520349919
This commit is contained in:
Nick Bourdakos
2023-03-29 09:00:08 -07:00
committed by Copybara-Service
parent a933a91413
commit 64ff0ee034
2 changed files with 23 additions and 17 deletions
+2 -2
View File
@@ -27,7 +27,7 @@ message AdvertisementData {
optional bytes tag = 1;
// A public key associated with the advertisement.
optional bytes public_key = 2;
optional bytes public_key = 2 /* type = ST_SECURITY_KEY */;
}
// The data to be sent to advertisers from scanning device during discovery.
@@ -39,5 +39,5 @@ message AdvertisementRequest {
optional string endpoint_id = 2;
// Public key from the scanning device.
optional bytes public_key = 3;
optional bytes public_key = 3 /* type = ST_SECURITY_KEY */;
}