AuthParameters

data class AuthParameters(    val organizationId: String,     val emailAddress: String,     val password: String,     val sessionDurationMinutes: UInt = Constants.DEFAULT_SESSION_TIME_MINUTES)

Data class used for wrapping parameters used with Password Authentication

Constructors

Link copied to clipboard
fun AuthParameters(    organizationId: String,     emailAddress: String,     password: String,     sessionDurationMinutes: UInt = Constants.DEFAULT_SESSION_TIME_MINUTES)

Properties

Link copied to clipboard
val emailAddress: String

is the member's email address

Link copied to clipboard
val organizationId: String

is the member's organization ID

Link copied to clipboard
val password: String

is the member's password

Link copied to clipboard
val sessionDurationMinutes: UInt

indicates how long the session should last before it expires