Overview
//trimble-id-android/com.trimble.model/User
User
[androidJvm]
data class User(val sub: String, val givenName: String, val familyName: String, val email: String? = null, val emailVerified: Boolean = false, val picture: String)
User claims data model
Constructors
| User | [androidJvm] constructor(sub: String, givenName: String, familyName: String, email: String? = null, emailVerified: Boolean = false, picture: String) |
Properties
| Name | Summary |
|---|---|
| [androidJvm] val email: String? = null The end-user’s preferred email address | |
| emailVerified | [androidJvm] val emailVerified: Boolean = false True if the end-user’s email address has been verified, else false |
| familyName | [androidJvm] val familyName: String The surname(s) or last name(s) of the end-user |
| givenName | [androidJvm] val givenName: String The given or first name of the end-user |
| picture | [androidJvm] val picture: String The URL of the profile picture for the end-user |
| sub | [androidJvm] val sub: String The subject (end-user) identifier |