CreateSessionRequest

data class CreateSessionRequest(val identifier: String, val password: String, val authFactorToken: String? = null, val allowTakendown: Boolean? = null)

Parameters

identifier

Handle or other identifier supported by the server for the authenticating user.

allowTakendown

When true, instead of throwing error for takendown accounts, a valid response with a narrow scoped token will be returned

Constructors

Link copied to clipboard
constructor(identifier: String, password: String, authFactorToken: String? = null, allowTakendown: Boolean? = null)

Properties

Link copied to clipboard
val allowTakendown: Boolean? = null

When true, instead of throwing error for takendown accounts, a valid response with a narrow scoped token will be returned

Link copied to clipboard
val authFactorToken: String? = null
Link copied to clipboard

Handle or other identifier supported by the server for the authenticating user.

Link copied to clipboard