All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.workos.usermanagement.models.AuthenticationImpersonator.kt Maven / Gradle / Ivy

Go to download

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