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

in.svix-kotlin.1.38.0.source-code.ApplicationListOptions.kt Maven / Gradle / Ivy

package com.svix.kotlin

import com.svix.kotlin.models.Ordering

class ApplicationListOptions : ListOptions() {
    var order: Ordering? = null

    fun order(order: Ordering) = apply { this.order = order }

    override fun iterator(iterator: String): ApplicationListOptions = apply { super.iterator(iterator) }

    override fun limit(limit: Int) = apply { super.limit(limit) }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy