
com.workos.auditlogs.models.AuditLogExportState.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.
package com.workos.auditlogs.models
import com.fasterxml.jackson.annotation.JsonValue
/**
* An enumeration of states for a [AuditLogExport]
*
* @param state The AuditLogExport State string value.
*/
enum class AuditLogExportState(@JsonValue val state: String) {
/**
* The export is still being generated.
*/
Pending("pending"),
/**
* The export is ready for download.
*/
Ready("ready"),
/**
* The export has run into an unexpected error.
*/
Error("error")
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy