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 Show documentation
Show all versions of kmpauth-google Show documentation
Kotlin Multiplatform Authentication Library targeting ios and android
package com.mmk.kmpauth.google
/**
* GoogleUser class holds most necessary fields
*/
public data class GoogleUser(
val idToken: String,
val accessToken:String?=null,
val displayName: String = "",
val profilePicUrl: String? = null,
)
© 2015 - 2024 Weber Informatics LLC | Privacy Policy