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

com.workos.auditlogs.models.AuditLogExportState.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.

There is a newer version: 4.9.0
Show newest version
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