com.workos.webhooks.models.PasswordResetEvent.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.webhooks.models
import com.workos.usermanagement.models.PasswordResetEventData
/**
* Webhook Event for `password_reset.*` events.
*/
class PasswordResetEvent(
@JvmField
override val id: String,
@JvmField
override val event: EventType,
@JvmField
override val data: PasswordResetEventData,
@JvmField
override val createdAt: String
) : WebhookEvent(id, event, data, createdAt)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy