Add Presence Identity types

PiperOrigin-RevId: 460569984
This commit is contained in:
jsobczak
2022-07-12 15:46:58 -07:00
committed by Copybara-Service
parent b92881a460
commit 61c9876ce9
+1 -4
View File
@@ -19,10 +19,7 @@ namespace nearby {
namespace presence {
class PresenceIdentity {
public:
enum class IdentityType {
kPrivate = 0,
kTrusted,
};
enum class IdentityType { kPrivate = 0, kTrusted, kPublic, kProvisioned };
PresenceIdentity(IdentityType type = IdentityType::kPrivate) noexcept;
IdentityType GetIdentityType() const;