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

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

package com.svix.kotlin

open class ListOptions {
    var iterator: String? = null
    var limit = 50

    open fun iterator(iterator: String) = apply { this.iterator = iterator }

    open fun limit(limit: Int) = apply { this.limit = limit }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy