commonMain.com.mmk.kmpauth.google.GoogleUser.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kmpauth-google-jvm Show documentation
Show all versions of kmpauth-google-jvm Show documentation
Kotlin Multiplatform Authentication Library targeting ios and android
The newest version!
package com.mmk.kmpauth.google
/**
* GoogleUser class holds most necessary fields
*/
public data class GoogleUser(
val idToken: String,
val accessToken:String? = null,
val email: String? = null,
val displayName: String = "",
val profilePicUrl: String? = null,
)
© 2015 - 2024 Weber Informatics LLC | Privacy Policy