com.workos.common.models.Order.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.common.models
/**
* An enumeration for the orders for pagination.
*/
enum class Order(val type: String) {
/**
* Ascending Order
*/
Asc("asc"),
/**
* Descending Order
*/
Desc("desc")
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy