-
public class MeData
Model for me data related to the active (connected) user.
-
-
Field Summary
Fields Modifier and Type Field Description private String
displayName
private String
externalId
private String
idToken
private BitmojiData
bitmojiData
-
Method Summary
Modifier and Type Method Description String
getDisplayName()
Returns the Display Name of the user. String
getExternalId()
Returns the External ID of the user. String
getIdToken()
Returns the Snap OIDC (OpenID Connect) token.Snap OIDC (OpenID Connect) provides a generic authentication and identity solution thatallows otherwise different systems to interoperate and share authentication state and userprofile information.Typically, this allows 3rd party backend services to accept and authenticate requests fromSnap clients. BitmojiData
getBitmojiData()
Returns the Bitmoji data of the user.
-
-
-
Method Detail
-
getDisplayName
@Nullable() String getDisplayName()
Returns the Display Name of the user.
-
getExternalId
@Nullable() String getExternalId()
Returns the External ID of the user.
-
getIdToken
@Nullable() String getIdToken()
Returns the Snap OIDC (OpenID Connect) token.Snap OIDC (OpenID Connect) provides a generic authentication and identity solution thatallows otherwise different systems to interoperate and share authentication state and userprofile information.Typically, this allows 3rd party backend services to accept and authenticate requests fromSnap clients.
-
getBitmojiData
@Nullable() BitmojiData getBitmojiData()
Returns the Bitmoji data of the user.
-
-