com.workos.usermanagement.models.AuthenticationImpersonator.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of workos Show documentation
Show all versions of workos Show documentation
The WorkOS Kotlin library provides convenient access to the WorkOS API from applications written in JVM compatible languages.
The newest version!
package com.workos.usermanagement.models
import com.fasterxml.jackson.annotation.JsonCreator
import com.fasterxml.jackson.annotation.JsonProperty
/**
* An authentication impersonator object.
*
* @param email The email address of the WorkOS Dashboard user who is impersonating the user.
* @param reason The justification the impersonator gave for impersonating the user.
*/
data class AuthenticationImpersonator @JsonCreator constructor(
@JsonProperty("email")
val email: String,
@JsonProperty("reason")
val reason: String? = null
)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy