toggle menu
supabase-kt
3.0.3
common
switch theme
search in API
auth-kt
/
io.github.jan.supabase.auth.user
/
Identity
Identity
@
Serializable
data
class
Identity
(
val
id
:
String
,
val
identityData
:
JsonObject
,
val
identityId
:
String
?
=
null
,
val
lastSignInAt
:
String
?
=
null
,
val
updatedAt
:
String
?
=
null
,
val
createdAt
:
String
?
=
null
,
val
provider
:
String
,
val
userId
:
String
)
(
source
)
Members
Constructors
Identity
Link copied to clipboard
constructor
(
id
:
String
,
identityData
:
JsonObject
,
identityId
:
String
?
=
null
,
lastSignInAt
:
String
?
=
null
,
updatedAt
:
String
?
=
null
,
createdAt
:
String
?
=
null
,
provider
:
String
,
userId
:
String
)
Properties
created
At
Link copied to clipboard
@
SerialName
(
value
=
"created_at"
)
val
createdAt
:
String
?
=
null
id
Link copied to clipboard
@
SerialName
(
value
=
"id"
)
val
id
:
String
identity
Data
Link copied to clipboard
@
SerialName
(
value
=
"identity_data"
)
val
identityData
:
JsonObject
identity
Id
Link copied to clipboard
@
SerialName
(
value
=
"identity_id"
)
val
identityId
:
String
?
=
null
last
Sign
In
At
Link copied to clipboard
@
SerialName
(
value
=
"last_sign_in_at"
)
val
lastSignInAt
:
String
?
=
null
provider
Link copied to clipboard
@
SerialName
(
value
=
"provider"
)
val
provider
:
String
updated
At
Link copied to clipboard
@
SerialName
(
value
=
"updated_at"
)
val
updatedAt
:
String
?
=
null
user
Id
Link copied to clipboard
@
SerialName
(
value
=
"user_id"
)
val
userId
:
String